diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md
index f0b5b03c..3563d3a4 100644
--- a/Assets/XCharts/CHANGELOG.md
+++ b/Assets/XCharts/CHANGELOG.md
@@ -1,6 +1,7 @@
# 更新日志
+* (2020.05.21) 增加`Background`背景组件
* (2020.05.19) 隐藏`Hierarchy`试图下自动生成的子节点
* (2020.05.18) 增加`chartName`属性可指定图表的别称,可通过`XChartMgr.Instance.GetChart(chartName)`获取图表
* (2020.05.16) 增加部分鼠标事件回调
diff --git a/Assets/XCharts/Documentation/XChartsAPI.md b/Assets/XCharts/Documentation/XChartsAPI.md
index 2e38a69b..135b3576 100644
--- a/Assets/XCharts/Documentation/XChartsAPI.md
+++ b/Assets/XCharts/Documentation/XChartsAPI.md
@@ -62,6 +62,7 @@
* `BaseChart.ClickLegendButton(int legendIndex, string legendName, bool show)`:点击图例按钮。
* `BaseChart.IsInChart(Vector2 local)`:坐标是否在图表范围内。
* `BaseChart.IsInChart(float x, float y)`:坐标是否在图表范围内。
+* `BaseChart.EnableBackground(bool flag)`:开启背景组件。背景组件在`chart`受上层布局控制时无法开启。
## `CoordinateChart`
diff --git a/Assets/XCharts/Documentation/XCharts配置项手册.md b/Assets/XCharts/Documentation/XCharts配置项手册.md
index f30403f2..dfdbdf0c 100644
--- a/Assets/XCharts/Documentation/XCharts配置项手册.md
+++ b/Assets/XCharts/Documentation/XCharts配置项手册.md
@@ -7,6 +7,7 @@
主组件:
* [Axis 坐标轴](#XAxis)
+* [Background 背景图](#Background)
* [DataZoom 区域缩放](#DataZoom)
* [Grid 网格](#Grid)
* [Legend 图例](#Legend)
@@ -342,6 +343,21 @@
* `IsValue()`:是否为数值轴。
* `AddData(string category, int maxDataNumber)`:添加一个类目到类目数据列表。
+## `Background`
+
+背景组件。
+由于框架的局限性,背景组件在`chart`受上层布局控制时不适用。因为背景组件节点和`chart`节点是同一级的。
+自动布局下的一种解决方案是,可以将`chart`节点再包一层`parent`。
+背景组件的开启需要通过接口来开启:`BaseChart.EnableBackground(bool flag)`
+
+相关参数:
+
+* `show`:是否显示启用背景组件。注意背景组件在`chart`受上层布局控制时不适用。
+* `image`:背景图。
+* `imageType`:背景图填充类型。
+* `imageColor`背景图颜色。默认`white`。
+* `hideThemeBackgroundColor`:当背景组件启用时,是否隐藏主题中设置的背景色。
+
## `YAxis`
直角坐标系 `grid` 中的 `Y` 轴。单个 `grid` 组件最多只能放左右两个 `Y` 轴。两个 `Y` 轴存储在 `yAxises` 中。
diff --git a/Assets/XCharts/Editor/BaseChartEditor.cs b/Assets/XCharts/Editor/BaseChartEditor.cs
index 5762e884..3e3c4283 100644
--- a/Assets/XCharts/Editor/BaseChartEditor.cs
+++ b/Assets/XCharts/Editor/BaseChartEditor.cs
@@ -23,6 +23,7 @@ namespace XCharts
protected SerializedProperty m_ChartHeight;
protected SerializedProperty m_Theme;
protected SerializedProperty m_ThemeInfo;
+ protected SerializedProperty m_Background;
protected SerializedProperty m_Title;
protected SerializedProperty m_Legend;
protected SerializedProperty m_Tooltip;
@@ -30,6 +31,7 @@ namespace XCharts
protected SerializedProperty m_Settings;
protected SerializedProperty m_Large;
protected SerializedProperty m_ChartName;
+ protected SerializedProperty m_DebugMode;
protected float m_DefaultLabelWidth;
protected float m_DefaultFieldWidth;
@@ -46,6 +48,7 @@ namespace XCharts
m_ChartHeight = serializedObject.FindProperty("m_ChartHeight");
m_Theme = serializedObject.FindProperty("m_Theme");
m_ThemeInfo = serializedObject.FindProperty("m_ThemeInfo");
+ m_Background = serializedObject.FindProperty("m_Background");
m_Title = serializedObject.FindProperty("m_Title");
m_Legend = serializedObject.FindProperty("m_Legend");
m_Tooltip = serializedObject.FindProperty("m_Tooltip");
@@ -53,6 +56,7 @@ namespace XCharts
m_Large = serializedObject.FindProperty("m_Large");
m_Settings = serializedObject.FindProperty("m_Settings");
+ m_DebugMode = serializedObject.FindProperty("m_DebugMode");
}
public override void OnInspectorGUI()
@@ -70,6 +74,7 @@ namespace XCharts
OnMiddleInspectorGUI();
OnEndInspectorGUI();
+ EditorGUILayout.PropertyField(m_DebugMode);
CheckWarning();
serializedObject.ApplyModifiedProperties();
}
@@ -77,9 +82,17 @@ namespace XCharts
protected virtual void OnStartInspectorGUI()
{
EditorGUILayout.PropertyField(m_Script);
- EditorGUI.BeginChangeCheck();
+
EditorGUILayout.PropertyField(m_ChartName);
EditorGUILayout.PropertyField(m_ThemeInfo, true);
+ EditorGUI.BeginChangeCheck();
+ EditorGUILayout.PropertyField(m_Background, true);
+
+ var m_Show = m_Background.FindPropertyRelative("m_Show");
+ if (m_Show.boolValue && !m_Target.CanShowBackgroundComponent())
+ {
+ EditorGUILayout.HelpBox("can't show background component:chart is control by LayoutGroup.", MessageType.Warning);
+ }
EditorGUILayout.PropertyField(m_Title, true);
EditorGUILayout.PropertyField(m_Legend, true);
EditorGUILayout.PropertyField(m_Tooltip, true);
diff --git a/Assets/XCharts/Editor/PropertyDrawers/BackgroundDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/BackgroundDrawer.cs
new file mode 100644
index 00000000..26f24c08
--- /dev/null
+++ b/Assets/XCharts/Editor/PropertyDrawers/BackgroundDrawer.cs
@@ -0,0 +1,67 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using UnityEditor;
+using UnityEngine;
+
+namespace XCharts
+{
+ [CustomPropertyDrawer(typeof(Background), true)]
+ public class BackgroundDrawer : PropertyDrawer
+ {
+ private bool m_BackgroundModuleToggle = false;
+
+ public override void OnGUI(Rect pos, SerializedProperty prop, GUIContent label)
+ {
+ Rect drawRect = pos;
+ drawRect.height = EditorGUIUtility.singleLineHeight;
+
+ SerializedProperty m_Show = prop.FindPropertyRelative("m_Show");
+ SerializedProperty m_Image = prop.FindPropertyRelative("m_Image");
+ SerializedProperty m_ImageType = prop.FindPropertyRelative("m_ImageType");
+ // SerializedProperty m_Left = prop.FindPropertyRelative("m_Left");
+ // SerializedProperty m_Right = prop.FindPropertyRelative("m_Right");
+ // SerializedProperty m_Top = prop.FindPropertyRelative("m_Top");
+ // SerializedProperty m_Bottom = prop.FindPropertyRelative("m_Bottom");
+ SerializedProperty m_ImageColor = prop.FindPropertyRelative("m_ImageColor");
+ SerializedProperty m_HideThemeBackgroundColor = prop.FindPropertyRelative("m_HideThemeBackgroundColor");
+
+ ChartEditorHelper.MakeFoldout(ref drawRect, ref m_BackgroundModuleToggle, "Background", m_Show);
+ EditorGUI.LabelField(drawRect, "Background", EditorStyles.boldLabel);
+ drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ if (m_BackgroundModuleToggle)
+ {
+ ++EditorGUI.indentLevel;
+ EditorGUI.PropertyField(drawRect, m_Image);
+ drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ EditorGUI.PropertyField(drawRect, m_ImageType);
+ drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ // EditorGUI.PropertyField(drawRect, m_Left);
+ // drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ // EditorGUI.PropertyField(drawRect, m_Right);
+ // drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ // EditorGUI.PropertyField(drawRect, m_Top);
+ // drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ // EditorGUI.PropertyField(drawRect, m_Bottom);
+ // drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ EditorGUI.PropertyField(drawRect, m_ImageColor);
+ drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ EditorGUI.PropertyField(drawRect, m_HideThemeBackgroundColor);
+ drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing;
+ --EditorGUI.indentLevel;
+ }
+ }
+
+ public override float GetPropertyHeight(SerializedProperty prop, GUIContent label)
+ {
+ if (m_BackgroundModuleToggle)
+ return 5 * EditorGUIUtility.singleLineHeight + 4 * EditorGUIUtility.standardVerticalSpacing;
+ else
+ return 1 * EditorGUIUtility.singleLineHeight + 1 * EditorGUIUtility.standardVerticalSpacing;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Editor/PropertyDrawers/BackgroundDrawer.cs.meta b/Assets/XCharts/Editor/PropertyDrawers/BackgroundDrawer.cs.meta
new file mode 100644
index 00000000..8f498c3c
--- /dev/null
+++ b/Assets/XCharts/Editor/PropertyDrawers/BackgroundDrawer.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 24e3f8609cdf9494cb350a110566176f
+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 6acc8904..71303053 100644
--- a/Assets/XCharts/Runtime/API/BaseChart_API.cs
+++ b/Assets/XCharts/Runtime/API/BaseChart_API.cs
@@ -727,6 +727,29 @@ namespace XCharts
return warningInfo;
}
+ ///
+ /// 是否可以开启背景组件。背景组件在chart受上层布局控制时无法开启。
+ ///
+ ///
+ public bool CanShowBackgroundComponent()
+ {
+ return !m_IsControlledByLayout;
+ }
+
+ ///
+ /// 开启背景组件。背景组件在chart受上层布局控制时不适用。
+ ///
+ ///
+ public void EnableBackground(bool flag)
+ {
+ if (flag && !CanShowBackgroundComponent())
+ {
+ Debug.LogError("can't show background component:chart is controlled by LayoutGroup.");
+ return;
+ }
+ m_Background.show = flag;
+ }
+
public Vector3 GetTitlePosition()
{
return chartPosition + m_Title.location.GetPosition(chartWidth, chartHeight);
diff --git a/Assets/XCharts/Runtime/Component/Main/Background.cs b/Assets/XCharts/Runtime/Component/Main/Background.cs
new file mode 100644
index 00000000..c324f837
--- /dev/null
+++ b/Assets/XCharts/Runtime/Component/Main/Background.cs
@@ -0,0 +1,135 @@
+using System.Net.Mime;
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using System;
+using UnityEngine;
+using UnityEngine.UI;
+
+namespace XCharts
+{
+ ///
+ /// 背景组件。
+ /// 由于框架的局限性,背景组件在chart受上层布局控制时不适用。因为背景组件节点和chart节点是同一级的。
+ /// 自动布局下的一种解决方案是,可以将chart节点再包一层parent。
+ /// 要处理这个问题底层框架要大改了,目前暂时不打算改。
+ /// 背景组件的开启需要通过接口来开启:BaseChart.EnableBackground(bool flag)
+ ///
+ [Serializable]
+ public class Background : MainComponent
+ {
+ [SerializeField] private bool m_Show = true;
+ [SerializeField] private Sprite m_Image;
+ [SerializeField] private Image.Type m_ImageType;
+ [SerializeField] private float m_Left;
+ [SerializeField] private float m_Right;
+ [SerializeField] private float m_Top;
+ [SerializeField] private float m_Bottom;
+ [SerializeField] private Color m_ImageColor = Color.white;
+ [SerializeField] private bool m_HideThemeBackgroundColor = true;
+
+ ///
+ /// 是否启用背景组件。注意背景组件在chart受上层布局控制时不适用。
+ ///
+ public bool show
+ {
+ get { return m_Show; }
+ internal set { if (PropertyUtility.SetStruct(ref m_Show, value)) SetComponentDirty(); }
+ }
+ ///
+ /// 背景图。
+ ///
+ public Sprite image
+ {
+ get { return m_Image; }
+ set { if (PropertyUtility.SetClass(ref m_Image, value)) SetComponentDirty(); }
+ }
+
+ ///
+ /// 背景图填充类型。
+ ///
+ public Image.Type imageType
+ {
+ get { return m_ImageType; }
+ set { if (PropertyUtility.SetStruct(ref m_ImageType, value)) SetComponentDirty(); }
+ }
+
+ ///
+ /// Distance between background component and the left side of the container.
+ /// background 组件离容器左侧的距离。
+ ///
+ public float left
+ {
+ get { return m_Left; }
+ set { if (PropertyUtility.SetStruct(ref m_Left, value)) SetComponentDirty(); }
+ }
+ ///
+ /// Distance between background component and the right side of the container.
+ /// background 组件离容器右侧的距离。
+ ///
+ public float right
+ {
+ get { return m_Right; }
+ set { if (PropertyUtility.SetStruct(ref m_Right, value)) SetComponentDirty(); }
+ }
+ ///
+ /// Distance between background component and the top side of the container.
+ /// background 组件离容器上侧的距离。
+ ///
+ public float top
+ {
+ get { return m_Top; }
+ set { if (PropertyUtility.SetStruct(ref m_Top, value)) SetComponentDirty(); }
+ }
+ ///
+ /// Distance between background component and the bottom side of the container.
+ /// background 组件离容器下侧的距离。
+ ///
+ public float bottom
+ {
+ get { return m_Bottom; }
+ set { if (PropertyUtility.SetStruct(ref m_Bottom, value)) SetComponentDirty(); }
+ }
+ ///
+ /// 背景图颜色。
+ ///
+ public Color imageColor
+ {
+ get { return m_ImageColor; }
+ set { if (PropertyUtility.SetColor(ref m_ImageColor, value)) SetComponentDirty(); }
+ }
+
+ ///
+ /// 当background组件开启时,是否隐藏主题中设置的背景色。
+ ///
+ public bool hideThemeBackgroundColor
+ {
+ get { return m_HideThemeBackgroundColor; }
+ set { if (PropertyUtility.SetStruct(ref m_HideThemeBackgroundColor, value)) SetVerticesDirty(); }
+ }
+
+ public static Background defaultBackground
+ {
+ get
+ {
+ var background = new Background
+ {
+ m_Show = false,
+ m_Image = null,
+ m_ImageType = Image.Type.Sliced,
+ m_Left = 0,
+ m_Right = 0,
+ m_Top = 0,
+ m_Bottom = 0,
+ m_ImageColor = Color.white,
+ m_HideThemeBackgroundColor = true,
+ };
+ return background;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Runtime/Component/Main/Background.cs.meta b/Assets/XCharts/Runtime/Component/Main/Background.cs.meta
new file mode 100644
index 00000000..d2bfe524
--- /dev/null
+++ b/Assets/XCharts/Runtime/Component/Main/Background.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 20bad62e2503e49dcacbecdc99542025
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XCharts/Runtime/Component/Main/XGrid.cs b/Assets/XCharts/Runtime/Component/Main/XGrid.cs
index c45e0385..8c51ded8 100644
--- a/Assets/XCharts/Runtime/Component/Main/XGrid.cs
+++ b/Assets/XCharts/Runtime/Component/Main/XGrid.cs
@@ -90,7 +90,7 @@ namespace XCharts
{
get
{
- var coordinate = new Grid
+ var grid = new Grid
{
m_Show = true,
m_Left = 50,
@@ -98,7 +98,7 @@ namespace XCharts
m_Top = 50,
m_Bottom = 30
};
- return coordinate;
+ return grid;
}
}
}
diff --git a/Assets/XCharts/Runtime/Internal/BaseChart.cs b/Assets/XCharts/Runtime/Internal/BaseChart.cs
index f358ad55..e3255006 100644
--- a/Assets/XCharts/Runtime/Internal/BaseChart.cs
+++ b/Assets/XCharts/Runtime/Internal/BaseChart.cs
@@ -34,12 +34,12 @@ namespace XCharts
IPointerEnterHandler, IPointerExitHandler, IBeginDragHandler, IPointerClickHandler,
IDragHandler, IEndDragHandler, IScrollHandler
{
+ protected static readonly string s_BackgroundObjectName = "background";
protected static readonly string s_TitleObjectName = "title";
protected static readonly string s_SubTitleObjectName = "title_sub";
protected static readonly string s_LegendObjectName = "legend";
protected static readonly string s_SerieLabelObjectName = "label";
protected static readonly string s_SerieTitleObjectName = "serie";
- protected static HideFlags s_HideFlags = HideFlags.HideAndDontSave;
[SerializeField] protected string m_ChartName;
[SerializeField] protected float m_ChartWidth;
@@ -48,10 +48,12 @@ namespace XCharts
[SerializeField] protected float m_ChartY;
[SerializeField] protected ThemeInfo m_ThemeInfo;
[SerializeField] protected Title m_Title = Title.defaultTitle;
+ [SerializeField] protected Background m_Background = Background.defaultBackground;
[SerializeField] protected Legend m_Legend = Legend.defaultLegend;
[SerializeField] protected Tooltip m_Tooltip = Tooltip.defaultTooltip;
[SerializeField] protected Series m_Series = Series.defaultSeries;
[SerializeField] protected Settings m_Settings = new Settings();
+ [SerializeField] protected bool m_DebugMode = false;
protected Action m_OnCustomDrawCallback;
protected Action m_OnPointerClick;
@@ -79,16 +81,21 @@ namespace XCharts
protected bool m_IsPlayingAnimation = false;
protected List m_LegendRealShowName = new List();
protected GameObject m_SerieLabelRoot;
+ protected GameObject m_BackgroundRoot;
protected bool m_ForceOpenRaycastTarget;
+ protected bool m_IsControlledByLayout = false;
protected Vector2 chartAnchorMax { get { return m_ChartMinAnchor; } }
protected Vector2 chartAnchorMin { get { return m_ChartMaxAnchor; } }
protected Vector2 chartPivot { get { return m_ChartPivot; } }
+ protected HideFlags chartHideFlags { get { return m_DebugMode ? HideFlags.None : HideFlags.HideInHierarchy; } }
private Theme m_CheckTheme = 0;
+ private Vector3 m_LastLocalPosition;
protected virtual void InitComponent()
{
+ InitBackground();
InitTitle();
InitLegend();
InitSerieLabel();
@@ -102,8 +109,13 @@ namespace XCharts
{
m_ThemeInfo = ThemeInfo.Default;
}
+ if (transform.parent != null)
+ {
+ m_IsControlledByLayout = transform.parent.GetComponent() != null;
+ }
raycastTarget = false;
m_CheckTheme = m_ThemeInfo.theme;
+ m_LastLocalPosition = transform.localPosition;
UpdateSize();
InitComponent();
m_Series.AnimationReset();
@@ -147,6 +159,12 @@ namespace XCharts
if (m_ThemeInfo.vertsDirty) RefreshChart();
m_ThemeInfo.ClearDirty();
}
+ if (m_Background.anyDirty)
+ {
+ if (m_Background.componentDirty) InitBackground();
+ if (m_Background.vertsDirty) RefreshChart();
+ m_Background.ClearDirty();
+ }
if (m_Title.anyDirty)
{
if (m_Title.componentDirty) InitTitle();
@@ -215,6 +233,7 @@ namespace XCharts
protected override void OnValidate()
{
m_ThemeInfo.SetAllDirty();
+ m_Background.SetAllDirty();
m_Title.SetAllDirty();
m_Legend.SetAllDirty();
m_Tooltip.SetAllDirty();
@@ -231,6 +250,31 @@ namespace XCharts
}
}
+ private void InitBackground()
+ {
+ if (!m_Background.show || m_IsControlledByLayout)
+ {
+ if (m_BackgroundRoot)
+ {
+ m_BackgroundRoot.SetActive(false);
+ }
+ return;
+ }
+ var backgroundName = s_BackgroundObjectName + GetInstanceID();
+ m_BackgroundRoot = ChartHelper.AddObject(backgroundName, transform.parent, m_ChartMinAnchor,
+ m_ChartMaxAnchor, m_ChartPivot, m_ChartSizeDelta);
+ //m_BackgroundRoot.hideFlags = chartHideFlags;
+ var backgroundImage = ChartHelper.GetOrAddComponent(m_BackgroundRoot);
+ var backgroundRect = m_BackgroundRoot.GetComponent();
+ backgroundRect.position = rectTransform.position;
+ backgroundRect.SetSiblingIndex(rectTransform.GetSiblingIndex() - 1);
+
+ backgroundImage.sprite = m_Background.image;
+ backgroundImage.type = m_Background.imageType;
+ backgroundImage.color = m_Background.imageColor;
+ m_BackgroundRoot.SetActive(m_Background.show);
+ }
+
private void InitTitle()
{
m_Title.OnChanged();
@@ -245,7 +289,7 @@ namespace XCharts
var titleObject = ChartHelper.AddObject(s_TitleObjectName, transform, anchorMin, anchorMax,
pivot, new Vector2(chartWidth, chartHeight));
titleObject.transform.localPosition = titlePosition;
- titleObject.hideFlags = s_HideFlags;
+ titleObject.hideFlags = chartHideFlags;
ChartHelper.HideAllObject(titleObject);
var textFont = TitleHelper.GetTextFont(title, themeInfo);
@@ -284,7 +328,7 @@ namespace XCharts
var legendObject = ChartHelper.AddObject(s_LegendObjectName, transform, anchorMin, anchorMax,
pivot, new Vector2(chartWidth, chartHeight));
legendObject.transform.localPosition = GetLegendPosition();
- legendObject.hideFlags = s_HideFlags;
+ legendObject.hideFlags = chartHideFlags;
SeriesHelper.UpdateSerieNameList(m_Series, ref m_LegendRealShowName);
List datas;
if (m_Legend.show && m_Legend.data.Count > 0)
@@ -379,7 +423,7 @@ namespace XCharts
{
m_SerieLabelRoot = ChartHelper.AddObject(s_SerieLabelObjectName, transform, m_ChartMinAnchor,
m_ChartMaxAnchor, m_ChartPivot, m_ChartSizeDelta);
- m_SerieLabelRoot.hideFlags = s_HideFlags;
+ m_SerieLabelRoot.hideFlags = chartHideFlags;
SerieLabelPool.ReleaseAll(m_SerieLabelRoot.transform);
int count = 0;
for (int i = 0; i < m_Series.Count; i++)
@@ -431,7 +475,7 @@ namespace XCharts
{
var titleObject = ChartHelper.AddObject(s_SerieTitleObjectName, transform, m_ChartMinAnchor,
m_ChartMaxAnchor, m_ChartPivot, new Vector2(chartWidth, chartHeight));
- titleObject.hideFlags = s_HideFlags;
+ titleObject.hideFlags = chartHideFlags;
ChartHelper.HideAllObject(titleObject);
for (int i = 0; i < m_Series.Count; i++)
{
@@ -465,7 +509,7 @@ namespace XCharts
var tooltipObject = ChartHelper.AddObject("tooltip", transform, m_ChartMinAnchor,
m_ChartMaxAnchor, m_ChartPivot, m_ChartSizeDelta);
tooltipObject.transform.localPosition = Vector3.zero;
- tooltipObject.hideFlags = s_HideFlags;
+ tooltipObject.hideFlags = chartHideFlags;
DestroyImmediate(tooltipObject.GetComponent());
var parent = tooltipObject.transform;
var textStyle = m_Tooltip.textStyle;
@@ -499,6 +543,11 @@ namespace XCharts
{
UpdateSize();
}
+ if (!ChartHelper.IsValueEqualsVector3(m_LastLocalPosition, transform.localPosition))
+ {
+ m_LastLocalPosition = transform.localPosition;
+ OnLocalPositionChanged();
+ }
}
private void UpdateSize()
@@ -653,13 +702,20 @@ namespace XCharts
protected virtual void OnSizeChanged()
{
+ m_Background.SetAllDirty();
m_Title.SetAllDirty();
m_Legend.SetAllDirty();
m_Tooltip.SetAllDirty();
m_Series.SetLabelDirty();
+ m_ReinitLabel = true;
RefreshChart();
}
+ protected virtual void OnLocalPositionChanged()
+ {
+ m_Background.SetAllDirty();
+ }
+
protected virtual void OnThemeChanged()
{
}
@@ -723,13 +779,14 @@ namespace XCharts
Vector3 p2 = new Vector3(chartX + chartWidth, chartY + chartHeight);
Vector3 p3 = new Vector3(chartX + chartWidth, chartY);
Vector3 p4 = new Vector3(chartX, chartY);
- ChartDrawer.DrawPolygon(vh, p1, p2, p3, p4, m_ThemeInfo.backgroundColor);
+ var backgroundColor = ThemeHelper.GetBackgroundColor(m_ThemeInfo, m_Background, m_IsControlledByLayout);
+ ChartDrawer.DrawPolygon(vh, p1, p2, p3, p4, backgroundColor);
}
public void DrawSymbol(VertexHelper vh, SerieSymbolType type, float symbolSize,
float tickness, Vector3 pos, Color color, Color toColor, float gap, float[] cornerRadius)
{
- var backgroundColor = m_ThemeInfo.backgroundColor;
+ var backgroundColor = ThemeHelper.GetBackgroundColor(m_ThemeInfo, m_Background, m_IsControlledByLayout);
var smoothness = m_Settings.cicleSmoothness;
ChartDrawer.DrawSymbol(vh, type, symbolSize, tickness, pos, color, toColor, gap,
cornerRadius, backgroundColor, smoothness);
diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs
index 86d6d605..6501308e 100644
--- a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs
+++ b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs
@@ -156,7 +156,8 @@ namespace XCharts
var cp2 = new Vector3(m_CoordinateX - yLineDiff, cpty);
var cp3 = new Vector3(m_CoordinateX + m_CoordinateWidth + xSplitDiff, cpty);
var cp4 = new Vector3(m_CoordinateX + m_CoordinateWidth + xSplitDiff, m_CoordinateY - xLineDiff);
- ChartDrawer.DrawPolygon(vh, cp1, cp2, cp3, cp4, m_ThemeInfo.backgroundColor);
+ var backgroundColor = ThemeHelper.GetBackgroundColor(m_ThemeInfo, m_Background, m_IsControlledByLayout);
+ ChartDrawer.DrawPolygon(vh, cp1, cp2, cp3, cp4, backgroundColor);
}
else
@@ -172,26 +173,27 @@ namespace XCharts
var yLineDiff = yAxis0.axisLine.width;
var xSplitDiff = xAxis0.splitLine.lineStyle.width;
var ySplitDiff = yAxis0.splitLine.lineStyle.width;
+ var backgroundColor = ThemeHelper.GetBackgroundColor(m_ThemeInfo, m_Background, m_IsControlledByLayout);
var lp1 = new Vector3(m_ChartX, m_ChartY);
var lp2 = new Vector3(m_ChartX, m_ChartY + chartHeight);
var lp3 = new Vector3(m_CoordinateX - yLineDiff, m_ChartY + chartHeight);
var lp4 = new Vector3(m_CoordinateX - yLineDiff, m_ChartY);
- ChartDrawer.DrawPolygon(vh, lp1, lp2, lp3, lp4, m_ThemeInfo.backgroundColor);
+ ChartDrawer.DrawPolygon(vh, lp1, lp2, lp3, lp4, backgroundColor);
var rp1 = new Vector3(m_CoordinateX + m_CoordinateWidth + xSplitDiff, m_ChartY);
var rp2 = new Vector3(m_CoordinateX + m_CoordinateWidth + xSplitDiff, m_ChartY + chartHeight);
var rp3 = new Vector3(m_ChartX + chartWidth, m_ChartY + chartHeight);
var rp4 = new Vector3(m_ChartX + chartWidth, m_ChartY);
- ChartDrawer.DrawPolygon(vh, rp1, rp2, rp3, rp4, m_ThemeInfo.backgroundColor);
+ ChartDrawer.DrawPolygon(vh, rp1, rp2, rp3, rp4, backgroundColor);
var up1 = new Vector3(m_CoordinateX - yLineDiff, m_CoordinateY + m_CoordinateHeight + ySplitDiff);
var up2 = new Vector3(m_CoordinateX - yLineDiff, m_ChartY + chartHeight);
var up3 = new Vector3(m_CoordinateX + m_CoordinateWidth + xSplitDiff, m_ChartY + chartHeight);
var up4 = new Vector3(m_CoordinateX + m_CoordinateWidth + xSplitDiff, m_CoordinateY + m_CoordinateHeight + ySplitDiff);
- ChartDrawer.DrawPolygon(vh, up1, up2, up3, up4, m_ThemeInfo.backgroundColor);
+ ChartDrawer.DrawPolygon(vh, up1, up2, up3, up4, backgroundColor);
var dp1 = new Vector3(m_CoordinateX - yLineDiff, m_ChartY);
var dp2 = new Vector3(m_CoordinateX - yLineDiff, m_CoordinateY - xLineDiff);
var dp3 = new Vector3(m_CoordinateX + m_CoordinateWidth + xSplitDiff, m_CoordinateY - xLineDiff);
var dp4 = new Vector3(m_CoordinateX + m_CoordinateWidth + xSplitDiff, m_ChartY);
- ChartDrawer.DrawPolygon(vh, dp1, dp2, dp3, dp4, m_ThemeInfo.backgroundColor);
+ ChartDrawer.DrawPolygon(vh, dp1, dp2, dp3, dp4, backgroundColor);
}
protected virtual void DrawSerie(VertexHelper vh)
@@ -515,7 +517,7 @@ namespace XCharts
chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight));
axisObj.transform.localPosition = Vector3.zero;
axisObj.SetActive(yAxis.show && yAxis.axisLabel.show);
- axisObj.hideFlags = s_HideFlags;
+ axisObj.hideFlags = chartHideFlags;
ChartHelper.HideAllObject(axisObj);
var labelColor = ChartHelper.IsClearColor(yAxis.axisLabel.color) ?
(Color)m_ThemeInfo.axisTextColor :
@@ -621,7 +623,7 @@ namespace XCharts
chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight));
axisObj.transform.localPosition = Vector3.zero;
axisObj.SetActive(xAxis.show && xAxis.axisLabel.show);
- axisObj.hideFlags = s_HideFlags;
+ axisObj.hideFlags = chartHideFlags;
ChartHelper.HideAllObject(axisObj);
var labelColor = ChartHelper.IsClearColor(xAxis.axisLabel.color) ?
(Color)m_ThemeInfo.axisTextColor :
@@ -703,7 +705,7 @@ namespace XCharts
var dataZoomObject = ChartHelper.AddObject(s_DefaultDataZoom, transform, chartAnchorMin,
chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight));
dataZoomObject.transform.localPosition = Vector3.zero;
- dataZoomObject.hideFlags = s_HideFlags;
+ dataZoomObject.hideFlags = chartHideFlags;
ChartHelper.HideAllObject(dataZoomObject);
var startLabel = ChartHelper.AddTextObject(s_DefaultDataZoom + "start",
dataZoomObject.transform, m_ThemeInfo.font, m_ThemeInfo.dataZoomTextColor, TextAnchor.MiddleRight,
diff --git a/Assets/XCharts/Runtime/Internal/Helper/ThemeHelper.cs b/Assets/XCharts/Runtime/Internal/Helper/ThemeHelper.cs
new file mode 100644
index 00000000..b44519e3
--- /dev/null
+++ b/Assets/XCharts/Runtime/Internal/Helper/ThemeHelper.cs
@@ -0,0 +1,20 @@
+/******************************************/
+/* */
+/* Copyright (c) 2018 monitor1394 */
+/* https://github.com/monitor1394 */
+/* */
+/******************************************/
+
+using UnityEngine;
+
+namespace XCharts
+{
+ internal static class ThemeHelper
+ {
+ public static Color GetBackgroundColor(ThemeInfo themeInfo, Background background, bool m_IsControlledByLayout)
+ {
+ if (!m_IsControlledByLayout && background.show && background.hideThemeBackgroundColor) return Color.clear;
+ else return themeInfo.backgroundColor;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/XCharts/Runtime/Internal/Helper/ThemeHelper.cs.meta b/Assets/XCharts/Runtime/Internal/Helper/ThemeHelper.cs.meta
new file mode 100644
index 00000000..31fb98b7
--- /dev/null
+++ b/Assets/XCharts/Runtime/Internal/Helper/ThemeHelper.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 5093880c2dbba4c01bb0231653ed3252
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/XChartsDemo/demo_xchart.unity b/Assets/XChartsDemo/demo_xchart.unity
index 33c6e293..a540a471 100644
--- a/Assets/XChartsDemo/demo_xchart.unity
+++ b/Assets/XChartsDemo/demo_xchart.unity
@@ -10788,6 +10788,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -34225,6 +34237,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 0
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -45998,6 +46022,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data: ['\u5317\u4EAC', '\u4E0A\u6D77', '\u5E7F\u5DDE'],"
m_DataFromJson: 0
@@ -67399,6 +67435,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 2
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data:['\u90AE\u4EF6\u8425\u9500','\u8054\u76DF\u5E7F\u544A','\u89C6\u9891\u5E7F\u544A','\u76F4\u63A5\u8BBF\u95EE','\u641C\u7D22\u5F15\u64CE']"
m_DataFromJson: 0
@@ -77923,6 +77971,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 2
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data: ['2011\u5E74', '2012\u5E74']"
m_DataFromJson: 0
@@ -84402,6 +84462,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 0
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -118317,6 +118389,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &237218502
MonoBehaviour:
@@ -121724,6 +121826,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -126938,6 +127052,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &252560113
MonoBehaviour:
@@ -129846,6 +129990,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 2
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data: ['2011\u5E74', '2012\u5E74']"
m_DataFromJson: 0
@@ -166443,6 +166599,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -172752,6 +172920,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -188955,6 +189135,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -199281,6 +199473,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data:['\u76F4\u63A5\u8BBF\u95EE','\u90AE\u4EF6\u8425\u9500','\u8054\u76DF\u5E7F\u544A','\u89C6\u9891\u5E7F\u544A','\u641C\u7D22\u5F15\u64CE']"
m_DataFromJson: 0
@@ -208879,6 +209083,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data: ['\u5317\u4EAC', '\u4E0A\u6D77', '\u5E7F\u5DDE']"
m_DataFromJson: 0
@@ -222362,6 +222578,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &449913328
MonoBehaviour:
@@ -224010,6 +224256,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &453606764
MonoBehaviour:
@@ -231067,6 +231343,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -248522,6 +248810,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -259301,6 +259601,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -273836,6 +274148,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 0
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -275834,6 +276158,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -312711,6 +313047,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -333194,6 +333542,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -334885,6 +335245,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -341288,6 +341660,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: data:['rose1','rose2','rose3','rose4','rose5','rose6','rose7','rose8']
m_DataFromJson: 0
@@ -350258,6 +350642,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -366121,6 +366517,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data:['\u76F4\u63A5\u8BBF\u95EE','\u90AE\u4EF6\u8425\u9500','\u8054\u76DF\u5E7F\u544A','\u89C6\u9891\u5E7F\u544A','\u641C\u7D22\u5F15\u64CE']"
m_DataFromJson: 0
@@ -382264,6 +382672,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &728093146
MonoBehaviour:
@@ -382760,6 +383198,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -404521,6 +404971,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -433397,6 +433859,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &855605996
MonoBehaviour:
@@ -445358,6 +445850,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -453247,6 +453751,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -465440,6 +465956,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data: ['\u9884\u7B97\u5206\u914D\uFF08Allocated Budget\uFF09', '\u5B9E\u9645\u5F00\u9500\uFF08Actual
Spending\uFF09']"
@@ -467736,6 +468264,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -474150,6 +474690,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 0
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -480501,6 +481053,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &946052564
MonoBehaviour:
@@ -481429,6 +482011,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 0
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -486384,6 +486978,7 @@ MonoBehaviour:
- {fileID: 1304904923}
- {fileID: 1474375334}
- {fileID: 1984264383}
+ - {fileID: 898747250}
--- !u!4 &953846993
Transform:
m_ObjectHideFlags: 0
@@ -489882,6 +490477,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -499883,6 +500490,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -618896,6 +619515,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -623343,6 +623974,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -643993,6 +644636,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &1064300881
MonoBehaviour:
@@ -649613,6 +650286,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -662687,6 +663372,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data: ['\u56FE\u4E00','\u56FE\u4E8C', '\u5F20\u4E09', '\u674E\u56DB']"
m_DataFromJson: 0
@@ -671653,6 +672350,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -681777,6 +682486,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -690217,6 +690938,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -700284,6 +701017,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -741825,6 +742570,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -746495,6 +747252,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -774454,6 +775223,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -944519,6 +945300,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -968598,6 +969391,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -972965,6 +973770,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -984943,6 +985760,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 2
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -987868,6 +988697,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: '[''1990'', ''2015'']'
m_DataFromJson: 0
@@ -999481,6 +1000322,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 2
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data:['\u90AE\u4EF6\u8425\u9500','\u8054\u76DF\u5E7F\u544A','\u89C6\u9891\u5E7F\u544A','\u76F4\u63A5\u8BBF\u95EE','\u641C\u7D22\u5F15\u64CE']"
m_DataFromJson: 0
@@ -1029512,6 +1030365,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1049936,6 +1050801,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1054019,6 +1054896,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data: ['\u9884\u7B97\u5206\u914D\uFF08Allocated Budget\uFF09', '\u5B9E\u9645\u5F00\u9500\uFF08Actual
Spending\uFF09']"
@@ -1074207,6 +1075096,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1076871,6 +1077772,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1092915,6 +1093828,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1116260,6 +1117185,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 2
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data: ['2011\u5E74', '2012\u5E74']"
m_DataFromJson: 0
@@ -1133297,6 +1134234,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1145243,6 +1146192,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1149997,6 +1150958,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1160018,6 +1160991,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &1888110917
MonoBehaviour:
@@ -1168316,6 +1169319,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data: ['\u9884\u7B97\u5206\u914D\uFF08Allocated Budget\uFF09', '\u5B9E\u9645\u5F00\u9500\uFF08Actual
Spending\uFF09']"
@@ -1173988,6 +1175003,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1198327,6 +1199354,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 1
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1200042,6 +1201081,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1227396,6 +1228447,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data:['\u67D0\u8F6F\u4EF6','\u67D0\u4E3B\u98DF\u624B\u673A','\u67D0\u6C34\u679C\u624B\u673A','\u964D\u6C34\u91CF','\u84B8\u53D1\u91CF']"
m_DataFromJson: 0
@@ -1230135,6 +1231198,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData: "data:['\u76F4\u8FBE','\u8425\u9500\u5E7F\u544A','\u641C\u7D22\u5F15\u64CE','\u90AE\u4EF6\u8425\u9500','\u8054\u76DF\u5E7F\u544A','\u89C6\u9891\u5E7F\u544A','\u767E\u5EA6','\u8C37\u6B4C','\u5FC5\u5E94','\u5176\u4ED6']"
m_DataFromJson: 0
@@ -1236786,6 +1237861,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1243597,6 +1244684,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -1260009,6 +1261108,36 @@ MonoBehaviour:
m_Calls: []
m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ - eventID: 2
+ callback:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
delegates: []
--- !u!114 &2129811974
MonoBehaviour:
@@ -1260861,6 +1261990,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 0
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
diff --git a/Assets/XChartsDemo/xcharts_performance.unity b/Assets/XChartsDemo/xcharts_performance.unity
index cb45bc12..a96fb094 100644
--- a/Assets/XChartsDemo/xcharts_performance.unity
+++ b/Assets/XChartsDemo/xcharts_performance.unity
@@ -113,988 +113,6 @@ NavMeshSettings:
debug:
m_Flags: 0
m_NavMeshData: {fileID: 0}
---- !u!1 &2324442
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2324443}
- - component: {fileID: 2324445}
- - component: {fileID: 2324444}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2324443
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2324442}
- 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: 682966886}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2324444
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2324442}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2324445
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2324442}
---- !u!1 &6552808
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 6552809}
- - component: {fileID: 6552811}
- - component: {fileID: 6552810}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &6552809
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 6552808}
- 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: 478957980}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &6552810
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 6552808}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &6552811
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 6552808}
---- !u!1 &9953485
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 9953486}
- - component: {fileID: 9953488}
- - component: {fileID: 9953487}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &9953486
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 9953485}
- 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: 246153540}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &9953487
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 9953485}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &9953488
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 9953485}
---- !u!1 &10167352
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 10167353}
- - component: {fileID: 10167355}
- - component: {fileID: 10167354}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &10167353
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 10167352}
- 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: 1862841351}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &10167354
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 10167352}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &10167355
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 10167352}
---- !u!1 &10813550
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 10813551}
- m_Layer: 0
- m_Name: label_0_1
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &10813551
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 10813550}
- 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: 1883061019}
- - {fileID: 110114895}
- m_Father: {fileID: 879012035}
- m_RootOrder: 1
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &12124920
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 12124921}
- - component: {fileID: 12124923}
- - component: {fileID: 12124922}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &12124921
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 12124920}
- 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: 110735113}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &12124922
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 12124920}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &12124923
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 12124920}
---- !u!1 &16457291
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 16457292}
- - component: {fileID: 16457294}
- - component: {fileID: 16457293}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &16457292
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 16457291}
- 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: 1813289517}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &16457293
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 16457291}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &16457294
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 16457291}
---- !u!1 &17612908
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 17612909}
- m_Layer: 0
- m_Name: label_0_37
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &17612909
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 17612908}
- 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: 1163828306}
- - {fileID: 1572942361}
- m_Father: {fileID: 894361979}
- m_RootOrder: 37
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &19143992
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 19143993}
- - component: {fileID: 19143995}
- - component: {fileID: 19143994}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &19143993
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 19143992}
- 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: 1701119397}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &19143994
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 19143992}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &19143995
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 19143992}
---- !u!1 &20246526
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 20246527}
- - component: {fileID: 20246529}
- - component: {fileID: 20246528}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &20246527
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 20246526}
- 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: 1487007370}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &20246528
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 20246526}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &20246529
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 20246526}
---- !u!1 &20660569
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 20660570}
- - component: {fileID: 20660572}
- - component: {fileID: 20660571}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &20660570
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 20660569}
- 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: 543791267}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &20660571
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 20660569}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &20660572
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 20660569}
---- !u!1 &20866330
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 20866331}
- m_Layer: 0
- m_Name: label_0_46
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &20866331
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 20866330}
- 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: 1347031506}
- - {fileID: 1713124874}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 46
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &20923468
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 20923469}
- m_Layer: 0
- m_Name: label_0_82
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &20923469
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 20923468}
- 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: 656665006}
- - {fileID: 329433370}
- m_Father: {fileID: 879012035}
- m_RootOrder: 82
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &22725946
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 22725947}
- - component: {fileID: 22725949}
- - component: {fileID: 22725948}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &22725947
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 22725946}
- 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: 1803105631}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &22725948
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 22725946}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &22725949
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 22725946}
---- !u!1 &22971973
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 22971974}
- - component: {fileID: 22971976}
- - component: {fileID: 22971975}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &22971974
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 22971973}
- 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: 951320941}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &22971975
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 22971973}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &22971976
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 22971973}
---- !u!1 &24760534
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 24760535}
- m_Layer: 0
- m_Name: label_0_71
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &24760535
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 24760534}
- 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: 1622283844}
- - {fileID: 1609485788}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 71
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &25195270
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 25195271}
- m_Layer: 0
- m_Name: label_0_52
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &25195271
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 25195270}
- 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: 532122827}
- - {fileID: 440471122}
- m_Father: {fileID: 879012035}
- m_RootOrder: 52
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &30756732
GameObject:
m_ObjectHideFlags: 0
@@ -1169,434 +187,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 30756732}
---- !u!1 &30891083
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 30891084}
- - component: {fileID: 30891086}
- - component: {fileID: 30891085}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &30891084
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 30891083}
- 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: 170996848}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &30891085
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 30891083}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &30891086
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 30891083}
---- !u!1 &35928854
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 35928855}
- - component: {fileID: 35928857}
- - component: {fileID: 35928856}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &35928855
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 35928854}
- 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: 1820314054}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &35928856
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 35928854}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &35928857
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 35928854}
---- !u!1 &36035193
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 36035194}
- - component: {fileID: 36035196}
- - component: {fileID: 36035195}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &36035194
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 36035193}
- 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: 1624427530}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &36035195
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 36035193}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &36035196
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 36035193}
---- !u!1 &37676094
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 37676095}
- - component: {fileID: 37676097}
- - component: {fileID: 37676096}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &37676095
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 37676094}
- 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: 365298055}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &37676096
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 37676094}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &37676097
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 37676094}
---- !u!1 &37972300
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 37972301}
- - component: {fileID: 37972303}
- - component: {fileID: 37972302}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &37972301
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 37972300}
- 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: 485125442}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &37972302
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 37972300}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &37972303
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 37972300}
---- !u!1 &38184950
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 38184951}
- m_Layer: 0
- m_Name: label_0_23
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &38184951
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 38184950}
- 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: 1637167925}
- - {fileID: 527495362}
- m_Father: {fileID: 879012035}
- m_RootOrder: 23
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &42712328
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 42712329}
- m_Layer: 0
- m_Name: label_0_89
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &42712329
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 42712328}
- 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: 1607474592}
- - {fileID: 742096620}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 89
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &43132413
GameObject:
m_ObjectHideFlags: 0
@@ -1671,1378 +261,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 43132413}
---- !u!1 &43375196
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 43375197}
- - component: {fileID: 43375199}
- - component: {fileID: 43375198}
- m_Layer: 0
- m_Name: axis_y22
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &43375197
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 43375196}
- 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: 2065853256}
- 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: 1788, y: 190}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &43375198
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 43375196}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &43375199
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 43375196}
---- !u!1 &46968579
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 46968580}
- m_Layer: 0
- m_Name: label_0_53
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &46968580
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 46968579}
- 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: 1655009724}
- - {fileID: 378838251}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 53
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &46999328
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 46999329}
- m_Layer: 0
- m_Name: label_0_64
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &46999329
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 46999328}
- 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: 844464113}
- - {fileID: 2113230972}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 64
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &51310536
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 51310537}
- m_Layer: 0
- m_Name: label_0_45
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &51310537
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 51310536}
- 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: 92320843}
- - {fileID: 509462564}
- m_Father: {fileID: 894361979}
- m_RootOrder: 45
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &52471511
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 52471512}
- - component: {fileID: 52471514}
- - component: {fileID: 52471513}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &52471512
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 52471511}
- 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: 1501762530}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &52471513
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 52471511}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &52471514
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 52471511}
---- !u!1 &55356784
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 55356785}
- - component: {fileID: 55356787}
- - component: {fileID: 55356786}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &55356785
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 55356784}
- 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: 1550488560}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &55356786
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 55356784}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &55356787
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 55356784}
---- !u!1 &57413880
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 57413881}
- - component: {fileID: 57413883}
- - component: {fileID: 57413882}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &57413881
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 57413880}
- 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: 1188360019}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &57413882
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 57413880}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &57413883
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 57413880}
---- !u!1 &64469353
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 64469354}
- m_Layer: 0
- m_Name: label_0_28
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &64469354
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 64469353}
- 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: 2102818028}
- - {fileID: 1431965706}
- m_Father: {fileID: 894361979}
- m_RootOrder: 28
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &64619781
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 64619782}
- - component: {fileID: 64619784}
- - component: {fileID: 64619783}
- 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 &64619782
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 64619781}
- 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: 247028392}
- 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.17, y: 93.03572}
- m_SizeDelta: {x: 50.17, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &64619783
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 64619781}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 14.28572
---- !u!222 &64619784
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 64619781}
---- !u!1 &71017290
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 71017291}
- m_Layer: 0
- m_Name: label_0_91
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &71017291
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 71017290}
- 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: 149783700}
- - {fileID: 1555412952}
- m_Father: {fileID: 894361979}
- m_RootOrder: 91
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &71384906
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 71384907}
- - component: {fileID: 71384909}
- - component: {fileID: 71384908}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &71384907
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 71384906}
- 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: 1060825441}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &71384908
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 71384906}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &71384909
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 71384906}
---- !u!1 &77602661
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 77602662}
- - component: {fileID: 77602664}
- - component: {fileID: 77602663}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &77602662
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 77602661}
- 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: 1656275548}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &77602663
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 77602661}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &77602664
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 77602661}
---- !u!1 &78468303
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 78468304}
- - component: {fileID: 78468306}
- - component: {fileID: 78468305}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &78468304
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 78468303}
- 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: 1531874593}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &78468305
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 78468303}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &78468306
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 78468303}
---- !u!1 &79083271
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 79083272}
- m_Layer: 0
- m_Name: label_0_82
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &79083272
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 79083271}
- 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: 1633005461}
- - {fileID: 557672465}
- m_Father: {fileID: 894361979}
- m_RootOrder: 82
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &79128405
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 79128406}
- - component: {fileID: 79128408}
- - component: {fileID: 79128407}
- m_Layer: 0
- m_Name: axis_x6
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &79128406
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 79128405}
- 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: 1744434248}
- 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: 1307.5906, y: -147}
- m_SizeDelta: {x: 201.16779, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &79128407
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 79128405}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12
---- !u!222 &79128408
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 79128405}
---- !u!1 &81239819
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 81239820}
- - component: {fileID: 81239822}
- - component: {fileID: 81239821}
- m_Layer: 0
- m_Name: axis_x22
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &81239820
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 81239819}
- 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: 1400674265}
- 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: 1088, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &81239821
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 81239819}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &81239822
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 81239819}
---- !u!1 &82214454
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 82214455}
- - component: {fileID: 82214457}
- - component: {fileID: 82214456}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &82214455
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 82214454}
- 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: 110735113}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &82214456
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 82214454}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &82214457
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 82214454}
---- !u!1 &82630934
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 82630935}
- - component: {fileID: 82630937}
- - component: {fileID: 82630936}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &82630935
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 82630934}
- 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: 1612862146}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &82630936
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 82630934}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &82630937
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 82630934}
---- !u!1 &82970812
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 82970813}
- - component: {fileID: 82970815}
- - component: {fileID: 82970814}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &82970813
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 82970812}
- 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: 751047238}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &82970814
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 82970812}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &82970815
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 82970812}
---- !u!1 &84010142
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 84010143}
- - component: {fileID: 84010145}
- - component: {fileID: 84010144}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &84010143
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 84010142}
- 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: 1247894225}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &84010144
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 84010142}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &84010145
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 84010142}
---- !u!1 &85211885
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 85211886}
- m_Layer: 0
- m_Name: label_0_2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &85211886
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 85211885}
- 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: 1753573079}
- - {fileID: 1563126968}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 2
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &86285046
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 86285047}
- - component: {fileID: 86285049}
- - component: {fileID: 86285048}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &86285047
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 86285046}
- 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: 1188360019}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &86285048
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 86285046}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &86285049
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 86285046}
---- !u!1 &86579205
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 86579206}
- m_Layer: 0
- m_Name: label_0_12
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &86579206
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 86579205}
- 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: 1288521370}
- - {fileID: 903421237}
- m_Father: {fileID: 879012035}
- m_RootOrder: 12
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &88599219
GameObject:
m_ObjectHideFlags: 0
@@ -3102,1031 +320,6 @@ MonoBehaviour:
m_Spacing: {x: 4, y: 4}
m_Constraint: 1
m_ConstraintCount: 1
---- !u!1 &89673330
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 89673331}
- - component: {fileID: 89673333}
- - component: {fileID: 89673332}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &89673331
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 89673330}
- 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: 987458730}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &89673332
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 89673330}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &89673333
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 89673330}
---- !u!1 &92198297
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 92198298}
- m_Layer: 0
- m_Name: label_0_16
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &92198298
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 92198297}
- 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: 1295077364}
- - {fileID: 1356322489}
- m_Father: {fileID: 894361979}
- m_RootOrder: 16
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &92320842
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 92320843}
- - component: {fileID: 92320845}
- - component: {fileID: 92320844}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &92320843
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 92320842}
- 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: 51310537}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &92320844
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 92320842}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &92320845
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 92320842}
---- !u!1 &92608280
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 92608281}
- m_Layer: 0
- m_Name: label_0_5
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &92608281
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 92608280}
- 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: 763166749}
- - {fileID: 421020834}
- m_Father: {fileID: 879012035}
- m_RootOrder: 5
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &92709744
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 92709745}
- - component: {fileID: 92709747}
- - component: {fileID: 92709746}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &92709745
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 92709744}
- 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: 1123046081}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &92709746
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 92709744}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &92709747
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 92709744}
---- !u!1 &93573493
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 93573494}
- - component: {fileID: 93573496}
- - component: {fileID: 93573495}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &93573494
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 93573493}
- 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: 478957980}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &93573495
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 93573493}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &93573496
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 93573493}
---- !u!1 &93741826
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 93741827}
- - component: {fileID: 93741829}
- - component: {fileID: 93741828}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &93741827
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 93741826}
- 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: 485125442}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &93741828
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 93741826}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &93741829
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 93741826}
---- !u!1 &94555551
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 94555552}
- - component: {fileID: 94555554}
- - component: {fileID: 94555553}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &94555552
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 94555551}
- 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: 1612862146}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &94555553
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 94555551}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &94555554
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 94555551}
---- !u!1 &100035163
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 100035164}
- - component: {fileID: 100035166}
- - component: {fileID: 100035165}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &100035164
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 100035163}
- 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: 139664243}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &100035165
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 100035163}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &100035166
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 100035163}
---- !u!1 &100253981
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 100253982}
- m_Layer: 0
- m_Name: label_0_16
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &100253982
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 100253981}
- 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: 124041979}
- - {fileID: 2097612030}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 16
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &103893827
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 103893828}
- - component: {fileID: 103893830}
- - component: {fileID: 103893829}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &103893828
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 103893827}
- 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: 720089071}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &103893829
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 103893827}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &103893830
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 103893827}
---- !u!1 &104753107
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 104753108}
- - component: {fileID: 104753110}
- - component: {fileID: 104753109}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &104753108
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 104753107}
- 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: 1586011819}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &104753109
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 104753107}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &104753110
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 104753107}
---- !u!1 &106500112
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 106500113}
- - component: {fileID: 106500115}
- - component: {fileID: 106500114}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &106500113
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 106500112}
- 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: 2130517366}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &106500114
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 106500112}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &106500115
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 106500112}
---- !u!1 &107254879
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 107254880}
- - component: {fileID: 107254882}
- - component: {fileID: 107254881}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &107254880
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 107254879}
- 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: 942777252}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &107254881
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 107254879}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &107254882
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 107254879}
---- !u!1 &107916687
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 107916688}
- - component: {fileID: 107916690}
- - component: {fileID: 107916689}
- 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 &107916688
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 107916687}
- 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: 247028392}
- 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: -8, y: 70}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &107916689
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 107916687}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &107916690
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 107916687}
---- !u!1 &108209549
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 108209550}
- - component: {fileID: 108209552}
- - component: {fileID: 108209551}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &108209550
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 108209549}
- 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: 221669390}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &108209551
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 108209549}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &108209552
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 108209549}
--- !u!1 &109785147
GameObject:
m_ObjectHideFlags: 0
@@ -4184,1134 +377,6 @@ MonoBehaviour:
m_ChildForceExpandHeight: 1
m_ChildControlWidth: 1
m_ChildControlHeight: 1
---- !u!1 &110114894
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 110114895}
- - component: {fileID: 110114897}
- - component: {fileID: 110114896}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &110114895
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110114894}
- 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: 10813551}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &110114896
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110114894}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &110114897
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110114894}
---- !u!1 &110137895
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 110137896}
- - component: {fileID: 110137898}
- - component: {fileID: 110137897}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &110137896
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110137895}
- 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: 904367111}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &110137897
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110137895}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &110137898
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110137895}
---- !u!1 &110292814
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 110292815}
- - component: {fileID: 110292817}
- - component: {fileID: 110292816}
- m_Layer: 0
- m_Name: axis_x_name
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &110292815
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110292814}
- 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: 125763605}
- m_RootOrder: 5
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0.5}
- m_AnchorMax: {x: 0, y: 0.5}
- m_AnchoredPosition: {x: 570, y: -170}
- m_SizeDelta: {x: 100, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &110292816
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110292814}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: axisName
---- !u!222 &110292817
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110292814}
---- !u!1 &110735112
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 110735113}
- m_Layer: 0
- m_Name: label_0_74
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &110735113
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 110735112}
- 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: 12124921}
- - {fileID: 82214455}
- m_Father: {fileID: 879012035}
- m_RootOrder: 74
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &113123324
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 113123325}
- - component: {fileID: 113123327}
- - component: {fileID: 113123326}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &113123325
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 113123324}
- 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: 1824376093}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &113123326
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 113123324}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &113123327
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 113123324}
---- !u!1 &114332254
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 114332255}
- - component: {fileID: 114332257}
- - component: {fileID: 114332256}
- 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 &114332255
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 114332254}
- 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: 607005197}
- 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: 742, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &114332256
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 114332254}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:07
---- !u!222 &114332257
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 114332254}
---- !u!1 &114536544
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 114536545}
- - component: {fileID: 114536547}
- - component: {fileID: 114536546}
- m_Layer: 0
- m_Name: axis_y21
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &114536545
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 114536544}
- 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: 366324264}
- 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: 1788, y: 110}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &114536546
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 114536544}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &114536547
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 114536544}
---- !u!1 &114988504
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 114988505}
- - component: {fileID: 114988507}
- - component: {fileID: 114988506}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &114988505
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 114988504}
- 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: 1478283434}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &114988506
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 114988504}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &114988507
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 114988504}
---- !u!1 &115218746
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 115218747}
- - component: {fileID: 115218749}
- - component: {fileID: 115218748}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &115218747
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 115218746}
- 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: 909088521}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &115218748
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 115218746}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &115218749
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 115218746}
---- !u!1 &117261483
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 117261484}
- - component: {fileID: 117261486}
- - component: {fileID: 117261485}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &117261484
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 117261483}
- 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: 675546638}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &117261485
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 117261483}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &117261486
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 117261483}
---- !u!1 &117270369
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 117270370}
- - component: {fileID: 117270372}
- - component: {fileID: 117270371}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &117270370
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 117270369}
- 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: 971033759}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &117270371
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 117270369}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &117270372
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 117270369}
---- !u!1 &118518219
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 118518220}
- - component: {fileID: 118518222}
- - component: {fileID: 118518221}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &118518220
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 118518219}
- 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: 736007243}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &118518221
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 118518219}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &118518222
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 118518219}
---- !u!1 &124041978
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 124041979}
- - component: {fileID: 124041981}
- - component: {fileID: 124041980}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &124041979
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 124041978}
- 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: 100253982}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &124041980
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 124041978}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &124041981
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 124041978}
---- !u!1 &125763604
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 125763605}
- 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 &125763605
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 125763604}
- 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: 390103404}
- - {fileID: 665872476}
- - {fileID: 273018845}
- - {fileID: 1670280252}
- - {fileID: 1802200444}
- - {fileID: 110292815}
- - {fileID: 1281076646}
- - {fileID: 462057713}
- - {fileID: 1621717015}
- - {fileID: 1366649835}
- - {fileID: 1514252525}
- m_Father: {fileID: 680358239}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &128228060
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 128228061}
- m_Layer: 0
- m_Name: label_0_15
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &128228061
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 128228060}
- 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: 632641531}
- - {fileID: 1624279026}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 15
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &128552214
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 128552215}
- m_Layer: 0
- m_Name: label_0_24
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &128552215
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 128552214}
- 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: 1425467609}
- - {fileID: 1950440257}
- m_Father: {fileID: 879012035}
- m_RootOrder: 24
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &131978642
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 131978643}
- - component: {fileID: 131978645}
- - component: {fileID: 131978644}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &131978643
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 131978642}
- 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: 922097054}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &131978644
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 131978642}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &131978645
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 131978642}
---- !u!1 &133567235
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 133567236}
- m_Layer: 0
- m_Name: label_0_26
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &133567236
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 133567235}
- 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: 2077441185}
- - {fileID: 1580788634}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 26
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &136975929
GameObject:
m_ObjectHideFlags: 0
@@ -5347,2119 +412,6 @@ RectTransform:
m_AnchoredPosition: {x: 81.85, y: 0}
m_SizeDelta: {x: 100, y: 100}
m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &138047624
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 138047625}
- m_Layer: 0
- m_Name: label_0_65
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &138047625
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 138047624}
- 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: 1218385645}
- - {fileID: 1834239843}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 65
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &139664242
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 139664243}
- m_Layer: 0
- m_Name: label_0_47
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &139664243
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 139664242}
- 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: 100035164}
- - {fileID: 291255854}
- m_Father: {fileID: 894361979}
- m_RootOrder: 47
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &149783699
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 149783700}
- - component: {fileID: 149783702}
- - component: {fileID: 149783701}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &149783700
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 149783699}
- 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: 71017291}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &149783701
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 149783699}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &149783702
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 149783699}
---- !u!1 &154528124
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 154528125}
- m_Layer: 0
- m_Name: label_0_64
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &154528125
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 154528124}
- 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: 370304924}
- - {fileID: 250347486}
- m_Father: {fileID: 894361979}
- m_RootOrder: 64
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &155904173
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 155904174}
- - component: {fileID: 155904176}
- - component: {fileID: 155904175}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &155904174
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 155904173}
- 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: 705288756}
- 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 &155904175
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 155904173}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &155904176
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 155904173}
---- !u!1 &168112359
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 168112360}
- - component: {fileID: 168112362}
- - component: {fileID: 168112361}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &168112360
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 168112359}
- 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: 905482300}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &168112361
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 168112359}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &168112362
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 168112359}
---- !u!1 &170996847
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 170996848}
- m_Layer: 0
- m_Name: label_0_59
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &170996848
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 170996847}
- 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: 1265367032}
- - {fileID: 30891084}
- m_Father: {fileID: 894361979}
- m_RootOrder: 59
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &173872239
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 173872240}
- - component: {fileID: 173872242}
- - component: {fileID: 173872241}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &173872240
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 173872239}
- 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: 977936300}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &173872241
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 173872239}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &173872242
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 173872239}
---- !u!1 &175203701
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 175203702}
- - component: {fileID: 175203704}
- - component: {fileID: 175203703}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &175203702
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 175203701}
- 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: 1277720618}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &175203703
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 175203701}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &175203704
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 175203701}
---- !u!1 &175662002
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 175662003}
- - component: {fileID: 175662005}
- - component: {fileID: 175662004}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &175662003
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 175662002}
- 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: 736007243}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &175662004
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 175662002}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &175662005
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 175662002}
---- !u!1 &175999138
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 175999139}
- m_Layer: 0
- m_Name: label_0_76
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &175999139
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 175999138}
- 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: 1295829715}
- - {fileID: 1901566078}
- m_Father: {fileID: 879012035}
- m_RootOrder: 76
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &177938799
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 177938800}
- - component: {fileID: 177938802}
- - component: {fileID: 177938801}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &177938800
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 177938799}
- 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: 423381752}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &177938801
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 177938799}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &177938802
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 177938799}
---- !u!1 &178036850
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 178036851}
- m_Layer: 0
- m_Name: label_0_63
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &178036851
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 178036850}
- 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: 263659681}
- - {fileID: 1592998325}
- m_Father: {fileID: 894361979}
- m_RootOrder: 63
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &180536881
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 180536882}
- - component: {fileID: 180536884}
- - component: {fileID: 180536883}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &180536882
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 180536881}
- 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: 1254973738}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &180536883
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 180536881}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &180536884
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 180536881}
---- !u!1 &180921877
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 180921878}
- - component: {fileID: 180921880}
- - component: {fileID: 180921879}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &180921878
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 180921877}
- 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: 1701119397}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &180921879
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 180921877}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &180921880
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 180921877}
---- !u!1 &181903828
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 181903829}
- - component: {fileID: 181903831}
- - component: {fileID: 181903830}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &181903829
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 181903828}
- 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: 1514968862}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &181903830
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 181903828}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &181903831
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 181903828}
---- !u!1 &187454545
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 187454546}
- - component: {fileID: 187454548}
- - component: {fileID: 187454547}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &187454546
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 187454545}
- 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: 336582619}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &187454547
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 187454545}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &187454548
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 187454545}
---- !u!1 &188148708
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 188148709}
- - component: {fileID: 188148711}
- - component: {fileID: 188148710}
- m_Layer: 0
- m_Name: axis_x7
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &188148709
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 188148708}
- 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: 607005197}
- 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: 1434, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &188148710
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 188148708}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:08
---- !u!222 &188148711
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 188148708}
---- !u!1 &189412653
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 189412654}
- - component: {fileID: 189412656}
- - component: {fileID: 189412655}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &189412654
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 189412653}
- 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: 678738528}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &189412655
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 189412653}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &189412656
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 189412653}
---- !u!1 &193839611
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 193839612}
- - component: {fileID: 193839614}
- - component: {fileID: 193839613}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &193839612
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 193839611}
- 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: 973109456}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &193839613
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 193839611}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &193839614
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 193839611}
---- !u!1 &198420909
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 198420910}
- m_Layer: 0
- m_Name: label_0_29
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &198420910
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 198420909}
- 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: 1649640838}
- - {fileID: 774951556}
- m_Father: {fileID: 894361979}
- m_RootOrder: 29
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &198621907
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 198621908}
- m_Layer: 0
- m_Name: label_0_79
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &198621908
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 198621907}
- 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: 1741509475}
- - {fileID: 1277364467}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 79
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &200178284
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 200178285}
- - component: {fileID: 200178287}
- - component: {fileID: 200178286}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &200178285
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 200178284}
- 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: 1487007370}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &200178286
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 200178284}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &200178287
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 200178284}
---- !u!1 &202018683
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 202018684}
- - component: {fileID: 202018686}
- - component: {fileID: 202018685}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &202018684
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 202018683}
- 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: 663222809}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &202018685
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 202018683}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &202018686
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 202018683}
---- !u!1 &204145894
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 204145895}
- - component: {fileID: 204145897}
- - component: {fileID: 204145896}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &204145895
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 204145894}
- 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: 1773915099}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &204145896
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 204145894}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &204145897
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 204145894}
---- !u!1 &205112338
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 205112339}
- m_Layer: 0
- m_Name: label_0_50
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &205112339
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 205112338}
- 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: 893576383}
- - {fileID: 327755358}
- m_Father: {fileID: 879012035}
- m_RootOrder: 50
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &205332104
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 205332105}
- - component: {fileID: 205332107}
- - component: {fileID: 205332106}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &205332105
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 205332104}
- 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: 1723485876}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &205332106
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 205332104}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &205332107
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 205332104}
---- !u!1 &215065551
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 215065552}
- - component: {fileID: 215065554}
- - component: {fileID: 215065553}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &215065552
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 215065551}
- 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: 1367553485}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &215065553
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 215065551}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &215065554
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 215065551}
---- !u!1 &216606160
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 216606161}
- - component: {fileID: 216606163}
- - component: {fileID: 216606162}
- 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 &216606161
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 216606160}
- 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: 743461882}
- m_Father: {fileID: 1347932761}
- 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: 400}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &216606162
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 216606160}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &216606163
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 216606160}
---- !u!1 &217516717
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 217516718}
- - component: {fileID: 217516720}
- - component: {fileID: 217516719}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &217516718
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 217516717}
- 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: 883498555}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &217516719
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 217516717}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &217516720
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 217516717}
---- !u!1 &218741663
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 218741664}
- m_Layer: 0
- m_Name: label_0_86
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &218741664
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 218741663}
- 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: 426998941}
- - {fileID: 702470133}
- m_Father: {fileID: 879012035}
- m_RootOrder: 86
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &221669389
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 221669390}
- m_Layer: 0
- m_Name: label_0_69
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &221669390
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 221669389}
- 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: 684593994}
- - {fileID: 108209550}
- m_Father: {fileID: 879012035}
- m_RootOrder: 69
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &225125187
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 225125188}
- - component: {fileID: 225125190}
- - component: {fileID: 225125189}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &225125188
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 225125187}
- 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: 1051619696}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &225125189
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 225125187}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &225125190
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 225125187}
---- !u!1 &225774075
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 225774076}
- m_Layer: 0
- m_Name: label_0_58
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &225774076
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 225774075}
- 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: 422936934}
- - {fileID: 582726782}
- m_Father: {fileID: 894361979}
- m_RootOrder: 58
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &229120079
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 229120080}
- - component: {fileID: 229120082}
- - component: {fileID: 229120081}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &229120080
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 229120079}
- 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: 410739357}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &229120081
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 229120079}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &229120082
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 229120079}
---- !u!1 &229399102
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 229399103}
- - component: {fileID: 229399105}
- - component: {fileID: 229399104}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &229399103
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 229399102}
- 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: 1064777813}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &229399104
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 229399102}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &229399105
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 229399102}
--- !u!1 &237605829
GameObject:
m_ObjectHideFlags: 0
@@ -7486,17 +438,7 @@ RectTransform:
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: 314818574}
- - {fileID: 1141575592}
- - {fileID: 894361979}
- - {fileID: 828432355}
- - {fileID: 617775941}
- - {fileID: 607005197}
- - {fileID: 399349871}
- - {fileID: 1633117997}
- - {fileID: 366324264}
- - {fileID: 1347932761}
+ m_Children: []
m_Father: {fileID: 88599220}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -7525,7 +467,6 @@ MonoBehaviour:
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_ChartName:
- m_ChartUUID:
m_ChartWidth: 1810
m_ChartHeight: 400
m_ChartX: 0
@@ -7694,7 +635,7 @@ MonoBehaviour:
m_JsonData:
m_DataFromJson: 0
m_Show: 1
- m_Text: "30\u6570\u636E"
+ m_Text: "180\u6570\u636E"
m_TextStyle:
m_JsonData:
m_DataFromJson: 0
@@ -7727,6 +668,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -11727,6 +4680,18156 @@ MonoBehaviour:
m_Data:
- 29
- 16
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 30
+ - 16.030077
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 31
+ - 16.05984
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 32
+ - 16.089277
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 33
+ - 16.118385
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 34
+ - 16.147152
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 35
+ - 16.175571
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 36
+ - 16.20363
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 37
+ - 16.231323
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 38
+ - 16.25864
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 39
+ - 16.285576
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 40
+ - 16.312119
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 41
+ - 16.33826
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 42
+ - 16.363997
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 43
+ - 16.389317
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 44
+ - 16.414213
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 45
+ - 16.438679
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 46
+ - 16.462708
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 47
+ - 16.48629
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 48
+ - 16.509418
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 49
+ - 16.53209
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 50
+ - 16.554293
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 51
+ - 16.576021
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 52
+ - 16.597271
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 53
+ - 16.618034
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 54
+ - 16.638304
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 55
+ - 16.658075
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 56
+ - 16.677341
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 57
+ - 16.696096
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 58
+ - 16.714334
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 59
+ - 16.732052
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 60
+ - 16.749239
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 61
+ - 16.765896
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 62
+ - 16.782013
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 63
+ - 16.797588
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 64
+ - 16.812616
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 65
+ - 16.827091
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 66
+ - 16.84101
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 67
+ - 16.854368
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 68
+ - 16.86716
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 69
+ - 16.879385
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 70
+ - 16.891037
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 71
+ - 16.902113
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 72
+ - 16.91261
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 73
+ - 16.922523
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 74
+ - 16.931852
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 75
+ - 16.940592
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 76
+ - 16.94874
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 77
+ - 16.956295
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 78
+ - 16.963255
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 79
+ - 16.969616
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 80
+ - 16.975376
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 81
+ - 16.980536
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 82
+ - 16.985092
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 83
+ - 16.989044
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 84
+ - 16.99239
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 85
+ - 16.995129
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 86
+ - 16.99726
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 87
+ - 16.998781
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 88
+ - 16.999695
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 89
+ - 17
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 90
+ - 16.999695
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 91
+ - 16.998781
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 92
+ - 16.99726
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 93
+ - 16.995129
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 94
+ - 16.99239
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 95
+ - 16.989044
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 96
+ - 16.985092
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 97
+ - 16.980536
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 98
+ - 16.975376
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 99
+ - 16.969616
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 100
+ - 16.963255
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 101
+ - 16.956295
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 102
+ - 16.94874
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 103
+ - 16.940592
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 104
+ - 16.931852
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 105
+ - 16.922523
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 106
+ - 16.91261
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 107
+ - 16.902113
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 108
+ - 16.891037
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 109
+ - 16.879385
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 110
+ - 16.86716
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 111
+ - 16.854368
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 112
+ - 16.84101
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 113
+ - 16.827091
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 114
+ - 16.812616
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 115
+ - 16.797588
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 116
+ - 16.782013
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 117
+ - 16.765896
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 118
+ - 16.749239
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 119
+ - 16.73205
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 120
+ - 16.714334
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 121
+ - 16.696096
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 122
+ - 16.677341
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 123
+ - 16.658075
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 124
+ - 16.638304
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 125
+ - 16.618034
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 126
+ - 16.597271
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 127
+ - 16.576021
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 128
+ - 16.554293
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 129
+ - 16.53209
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 130
+ - 16.509418
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 131
+ - 16.48629
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 132
+ - 16.462708
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 133
+ - 16.43868
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 134
+ - 16.414213
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 135
+ - 16.389317
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 136
+ - 16.363997
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 137
+ - 16.33826
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 138
+ - 16.312119
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 139
+ - 16.285576
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 140
+ - 16.25864
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 141
+ - 16.231323
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 142
+ - 16.20363
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 143
+ - 16.17557
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 144
+ - 16.147152
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 145
+ - 16.118385
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 146
+ - 16.089277
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 147
+ - 16.05984
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 148
+ - 16.030075
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 149
+ - 16
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 150
+ - 15.969619
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 151
+ - 15.938943
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 152
+ - 15.907981
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 153
+ - 15.876742
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 154
+ - 15.845237
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 155
+ - 15.813473
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 156
+ - 15.781463
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 157
+ - 15.749213
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 158
+ - 15.716736
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 159
+ - 15.68404
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 160
+ - 15.651136
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 161
+ - 15.618034
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 162
+ - 15.5847435
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 163
+ - 15.551274
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 164
+ - 15.517638
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 165
+ - 15.483844
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 166
+ - 15.449903
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 167
+ - 15.415823
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 168
+ - 15.3816185
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 169
+ - 15.347297
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 170
+ - 15.312869
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 171
+ - 15.278346
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 172
+ - 15.243738
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 173
+ - 15.209057
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 174
+ - 15.174312
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 175
+ - 15.139513
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 176
+ - 15.104672
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 177
+ - 15.069798
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 178
+ - 15.0349045
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 179
+ - 15
m_Settings:
m_JsonData:
m_DataFromJson: 0
@@ -11737,8 +22840,6 @@ MonoBehaviour:
m_VisualMapTriangeLen: 20
m_PieTooltipExtraRadius: 8
m_PieSelectedOffset: 8
- m_Large: 1
- m_DebugInfo:
m_Grid:
m_JsonData:
m_DataFromJson: 0
@@ -11795,6 +22896,156 @@ MonoBehaviour:
- 12:00:28
- 12:00:29
- 12:00:30
+ - 12:00:31
+ - 12:00:32
+ - 12:00:33
+ - 12:00:34
+ - 12:00:35
+ - 12:00:36
+ - 12:00:37
+ - 12:00:38
+ - 12:00:39
+ - 12:00:40
+ - 12:00:41
+ - 12:00:42
+ - 12:00:43
+ - 12:00:44
+ - 12:00:45
+ - 12:00:46
+ - 12:00:47
+ - 12:00:48
+ - 12:00:49
+ - 12:00:50
+ - 12:00:51
+ - 12:00:52
+ - 12:00:53
+ - 12:00:54
+ - 12:00:55
+ - 12:00:56
+ - 12:00:57
+ - 12:00:58
+ - 12:00:59
+ - 12:01:00
+ - 12:01:01
+ - 12:01:02
+ - 12:01:03
+ - 12:01:04
+ - 12:01:05
+ - 12:01:06
+ - 12:01:07
+ - 12:01:08
+ - 12:01:09
+ - 12:01:10
+ - 12:01:11
+ - 12:01:12
+ - 12:01:13
+ - 12:01:14
+ - 12:01:15
+ - 12:01:16
+ - 12:01:17
+ - 12:01:18
+ - 12:01:19
+ - 12:01:20
+ - 12:01:21
+ - 12:01:22
+ - 12:01:23
+ - 12:01:24
+ - 12:01:25
+ - 12:01:26
+ - 12:01:27
+ - 12:01:28
+ - 12:01:29
+ - 12:01:30
+ - 12:01:31
+ - 12:01:32
+ - 12:01:33
+ - 12:01:34
+ - 12:01:35
+ - 12:01:36
+ - 12:01:37
+ - 12:01:38
+ - 12:01:39
+ - 12:01:40
+ - 12:01:41
+ - 12:01:42
+ - 12:01:43
+ - 12:01:44
+ - 12:01:45
+ - 12:01:46
+ - 12:01:47
+ - 12:01:48
+ - 12:01:49
+ - 12:01:50
+ - 12:01:51
+ - 12:01:52
+ - 12:01:53
+ - 12:01:54
+ - 12:01:55
+ - 12:01:56
+ - 12:01:57
+ - 12:01:58
+ - 12:01:59
+ - 12:02:00
+ - 12:02:01
+ - 12:02:02
+ - 12:02:03
+ - 12:02:04
+ - 12:02:05
+ - 12:02:06
+ - 12:02:07
+ - 12:02:08
+ - 12:02:09
+ - 12:02:10
+ - 12:02:11
+ - 12:02:12
+ - 12:02:13
+ - 12:02:14
+ - 12:02:15
+ - 12:02:16
+ - 12:02:17
+ - 12:02:18
+ - 12:02:19
+ - 12:02:20
+ - 12:02:21
+ - 12:02:22
+ - 12:02:23
+ - 12:02:24
+ - 12:02:25
+ - 12:02:26
+ - 12:02:27
+ - 12:02:28
+ - 12:02:29
+ - 12:02:30
+ - 12:02:31
+ - 12:02:32
+ - 12:02:33
+ - 12:02:34
+ - 12:02:35
+ - 12:02:36
+ - 12:02:37
+ - 12:02:38
+ - 12:02:39
+ - 12:02:40
+ - 12:02:41
+ - 12:02:42
+ - 12:02:43
+ - 12:02:44
+ - 12:02:45
+ - 12:02:46
+ - 12:02:47
+ - 12:02:48
+ - 12:02:49
+ - 12:02:50
+ - 12:02:51
+ - 12:02:52
+ - 12:02:53
+ - 12:02:54
+ - 12:02:55
+ - 12:02:56
+ - 12:02:57
+ - 12:02:58
+ - 12:02:59
+ - 12:03:00
m_AxisLine:
m_JsonData:
m_DataFromJson: 0
@@ -12201,1863 +23452,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 237605829}
---- !u!1 &239670303
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 239670304}
- - component: {fileID: 239670306}
- - component: {fileID: 239670305}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &239670304
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 239670303}
- 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: 393892058}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &239670305
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 239670303}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &239670306
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 239670303}
---- !u!1 &240872502
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 240872503}
- - component: {fileID: 240872505}
- - component: {fileID: 240872504}
- 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 &240872503
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 240872502}
- 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: 1744434248}
- 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: 1106.4229, y: -147}
- m_SizeDelta: {x: 201.16779, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &240872504
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 240872502}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 11
---- !u!222 &240872505
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 240872502}
---- !u!1 &246153539
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 246153540}
- m_Layer: 0
- m_Name: label_0_10
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &246153540
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 246153539}
- 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: 1367984699}
- - {fileID: 9953486}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 10
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &247028391
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 247028392}
- 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 &247028392
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 247028391}
- 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: 2039542371}
- - {fileID: 107916688}
- - {fileID: 1207246502}
- - {fileID: 1662163359}
- - {fileID: 1249296111}
- - {fileID: 64619782}
- - {fileID: 902031365}
- - {fileID: 1781073867}
- m_Father: {fileID: 1304222265}
- 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: 1810.51, y: 140}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &247280876
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 247280877}
- - component: {fileID: 247280879}
- - component: {fileID: 247280878}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &247280877
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 247280876}
- 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: 2105109421}
- 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 &247280878
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 247280876}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &247280879
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 247280876}
---- !u!1 &247847426
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 247847427}
- m_Layer: 0
- m_Name: label_0_46
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &247847427
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 247847426}
- 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: 945282018}
- - {fileID: 1221226892}
- m_Father: {fileID: 894361979}
- m_RootOrder: 46
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &249878134
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 249878135}
- - component: {fileID: 249878137}
- - component: {fileID: 249878136}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &249878135
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 249878134}
- 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: 1141381736}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &249878136
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 249878134}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &249878137
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 249878134}
---- !u!1 &250347485
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 250347486}
- - component: {fileID: 250347488}
- - component: {fileID: 250347487}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &250347486
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 250347485}
- 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: 154528125}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &250347487
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 250347485}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &250347488
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 250347485}
---- !u!1 &254000716
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 254000717}
- m_Layer: 0
- m_Name: label_0_20
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &254000717
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 254000716}
- 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: 2099640357}
- - {fileID: 279028237}
- m_Father: {fileID: 894361979}
- m_RootOrder: 20
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &254774804
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 254774805}
- m_Layer: 0
- m_Name: label_0_47
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &254774805
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 254774804}
- 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: 1978396417}
- - {fileID: 2075920037}
- m_Father: {fileID: 879012035}
- m_RootOrder: 47
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &258138211
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 258138212}
- - component: {fileID: 258138214}
- - component: {fileID: 258138213}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &258138212
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 258138211}
- 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: 1922343103}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &258138213
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 258138211}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &258138214
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 258138211}
---- !u!1 &259067974
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 259067975}
- - component: {fileID: 259067977}
- - component: {fileID: 259067976}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &259067975
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 259067974}
- 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: 455406443}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &259067976
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 259067974}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &259067977
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 259067974}
---- !u!1 &259383531
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 259383532}
- m_Layer: 0
- m_Name: datazoom
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &259383532
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 259383531}
- 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: 472736221}
- - {fileID: 955986985}
- m_Father: {fileID: 680358239}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &259464920
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 259464921}
- - component: {fileID: 259464923}
- - component: {fileID: 259464922}
- m_Layer: 0
- m_Name: title
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &259464921
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 259464920}
- 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: 2093877498}
- 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: 1810, y: 16}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &259464922
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 259464920}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 1
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 1
- m_LineSpacing: 1
- m_Text: "20\u6570\u636E"
---- !u!222 &259464923
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 259464920}
---- !u!1 &263579240
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 263579241}
- - component: {fileID: 263579243}
- - component: {fileID: 263579242}
- 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 &263579241
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 263579240}
- 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: 1633117997}
- 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 &263579242
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 263579240}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &263579243
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 263579240}
---- !u!1 &263659680
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 263659681}
- - component: {fileID: 263659683}
- - component: {fileID: 263659682}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &263659681
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 263659680}
- 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: 178036851}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &263659682
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 263659680}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &263659683
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 263659680}
---- !u!1 &264383855
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 264383856}
- - component: {fileID: 264383858}
- - component: {fileID: 264383857}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &264383856
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 264383855}
- 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: 2019239775}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &264383857
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 264383855}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &264383858
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 264383855}
---- !u!1 &267777057
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 267777058}
- - component: {fileID: 267777060}
- - component: {fileID: 267777059}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &267777058
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 267777057}
- 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: 927197954}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &267777059
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 267777057}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &267777060
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 267777057}
---- !u!1 &268206079
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 268206080}
- - component: {fileID: 268206082}
- - component: {fileID: 268206081}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &268206080
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 268206079}
- 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: 2008635767}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &268206081
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 268206079}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &268206082
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 268206079}
---- !u!1 &268461701
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 268461702}
- - component: {fileID: 268461704}
- - component: {fileID: 268461703}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &268461702
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 268461701}
- 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: 1589619011}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &268461703
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 268461701}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &268461704
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 268461701}
---- !u!1 &268732616
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 268732617}
- m_Layer: 0
- m_Name: label_0_85
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &268732617
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 268732616}
- 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: 311525787}
- - {fileID: 1303355053}
- m_Father: {fileID: 879012035}
- m_RootOrder: 85
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &270356623
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 270356624}
- - component: {fileID: 270356626}
- - component: {fileID: 270356625}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &270356624
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 270356623}
- 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: 937050842}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &270356625
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 270356623}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &270356626
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 270356623}
---- !u!1 &273018844
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 273018845}
- - component: {fileID: 273018847}
- - component: {fileID: 273018846}
- 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 &273018845
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 273018844}
- 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: 125763605}
- 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: 1088, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &273018846
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 273018844}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:11
---- !u!222 &273018847
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 273018844}
---- !u!1 &279028236
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 279028237}
- - component: {fileID: 279028239}
- - component: {fileID: 279028238}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &279028237
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 279028236}
- 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: 254000717}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &279028238
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 279028236}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &279028239
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 279028236}
---- !u!1 &280618039
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 280618040}
- m_Layer: 0
- m_Name: label_0_94
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &280618040
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 280618039}
- 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: 1742076091}
- - {fileID: 651176448}
- m_Father: {fileID: 894361979}
- m_RootOrder: 94
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &284126103
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 284126104}
- - component: {fileID: 284126106}
- - component: {fileID: 284126105}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &284126104
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 284126103}
- 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: 1216474455}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &284126105
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 284126103}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &284126106
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 284126103}
---- !u!1 &286486330
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 286486331}
- m_Layer: 0
- m_Name: label_0_51
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &286486331
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 286486330}
- 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: 845243489}
- - {fileID: 541119936}
- m_Father: {fileID: 879012035}
- m_RootOrder: 51
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &291255853
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 291255854}
- - component: {fileID: 291255856}
- - component: {fileID: 291255855}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &291255854
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 291255853}
- 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: 139664243}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &291255855
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 291255853}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &291255856
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 291255853}
---- !u!1 &292358545
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 292358546}
- m_Layer: 0
- m_Name: label_0_80
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &292358546
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 292358545}
- 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: 1129759810}
- - {fileID: 1741927050}
- m_Father: {fileID: 894361979}
- m_RootOrder: 80
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &295459730
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 295459731}
- - component: {fileID: 295459733}
- - component: {fileID: 295459732}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &295459731
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 295459730}
- 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: 2051287526}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &295459732
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 295459730}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &295459733
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 295459730}
---- !u!1 &298128254
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 298128255}
- m_Layer: 0
- m_Name: label_0_36
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &298128255
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 298128254}
- 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: 1333764822}
- - {fileID: 1684101257}
- m_Father: {fileID: 879012035}
- m_RootOrder: 36
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &298716915
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 298716916}
- m_Layer: 0
- m_Name: serie
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &298716916
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 298716915}
- 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: 1895116466}
- m_Father: {fileID: 680358239}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
--- !u!1 &299404306
GameObject:
m_ObjectHideFlags: 0
@@ -14123,1034 +23517,6 @@ Transform:
m_Father: {fileID: 0}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
---- !u!1 &304221328
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 304221329}
- - component: {fileID: 304221331}
- - component: {fileID: 304221330}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &304221329
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 304221328}
- 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: 2044490130}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &304221330
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 304221328}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &304221331
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 304221328}
---- !u!1 &311525786
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 311525787}
- - component: {fileID: 311525789}
- - component: {fileID: 311525788}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &311525787
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 311525786}
- 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: 268732617}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &311525788
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 311525786}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &311525789
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 311525786}
---- !u!1 &312564750
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 312564751}
- m_Layer: 0
- m_Name: label_0_25
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &312564751
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 312564750}
- 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: 2018863908}
- - {fileID: 868383419}
- m_Father: {fileID: 879012035}
- m_RootOrder: 25
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &312977043
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 312977044}
- - component: {fileID: 312977046}
- - component: {fileID: 312977045}
- m_Layer: 0
- m_Name: axis_x23
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &312977044
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 312977043}
- 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: 1436921200}
- 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: 1448.408, y: 7}
- m_SizeDelta: {x: 362.102, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &312977045
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 312977043}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &312977046
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 312977043}
---- !u!1 &314818573
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 314818574}
- m_Layer: 0
- m_Name: title
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &314818574
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 314818573}
- 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: 1346682447}
- - {fileID: 644991340}
- m_Father: {fileID: 237605830}
- 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: -5}
- m_SizeDelta: {x: 1810, y: 400}
- m_Pivot: {x: 0.5, y: 1}
---- !u!1 &317897653
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 317897654}
- m_Layer: 0
- m_Name: label_0_82
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &317897654
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 317897653}
- 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: 1984975849}
- - {fileID: 901352051}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 82
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &321053221
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 321053222}
- - component: {fileID: 321053224}
- - component: {fileID: 321053223}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &321053222
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 321053221}
- 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: 426539878}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &321053223
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 321053221}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &321053224
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 321053221}
---- !u!1 &325560287
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 325560288}
- - component: {fileID: 325560290}
- - component: {fileID: 325560289}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &325560288
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 325560287}
- 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: 610721074}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &325560289
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 325560287}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &325560290
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 325560287}
---- !u!1 &326485681
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 326485682}
- - component: {fileID: 326485684}
- - component: {fileID: 326485683}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &326485682
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 326485681}
- 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: 1542518337}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &326485683
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 326485681}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &326485684
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 326485681}
---- !u!1 &326900094
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 326900095}
- - component: {fileID: 326900097}
- - component: {fileID: 326900096}
- 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 &326900095
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 326900094}
- 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: 556563283}
- m_Father: {fileID: 2052739601}
- 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: 140}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &326900096
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 326900094}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &326900097
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 326900094}
---- !u!1 &327258024
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 327258025}
- m_Layer: 0
- m_Name: label_0_74
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &327258025
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 327258024}
- 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: 1672963402}
- - {fileID: 1646263905}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 74
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &327755357
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 327755358}
- - component: {fileID: 327755360}
- - component: {fileID: 327755359}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &327755358
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 327755357}
- 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: 205112339}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &327755359
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 327755357}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &327755360
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 327755357}
---- !u!1 &329433369
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 329433370}
- - component: {fileID: 329433372}
- - component: {fileID: 329433371}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &329433370
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 329433369}
- 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: 20923469}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &329433371
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 329433369}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &329433372
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 329433369}
---- !u!1 &329692038
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 329692039}
- - component: {fileID: 329692041}
- - component: {fileID: 329692040}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &329692039
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 329692038}
- 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: 670718773}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &329692040
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 329692038}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &329692041
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 329692038}
---- !u!1 &336582618
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 336582619}
- m_Layer: 0
- m_Name: label_0_69
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &336582619
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 336582618}
- 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: 187454546}
- - {fileID: 1904914742}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 69
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &337797853
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 337797854}
- - component: {fileID: 337797856}
- - component: {fileID: 337797855}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &337797854
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 337797853}
- 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: 653945287}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &337797855
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 337797853}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &337797856
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 337797853}
---- !u!1 &339396044
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 339396045}
- - component: {fileID: 339396047}
- - component: {fileID: 339396046}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &339396045
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 339396044}
- 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: 1723485876}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &339396046
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 339396044}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &339396047
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 339396044}
--- !u!1 &340884743
GameObject:
m_ObjectHideFlags: 0
@@ -15188,2568 +23554,6 @@ RectTransform:
m_AnchoredPosition: {x: 774.8, y: 437.6}
m_SizeDelta: {x: 100, y: 100}
m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &349519168
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 349519169}
- - component: {fileID: 349519171}
- - component: {fileID: 349519170}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &349519169
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 349519168}
- 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: 1743695887}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &349519170
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 349519168}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &349519171
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 349519168}
---- !u!1 &350116617
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 350116618}
- m_Layer: 0
- m_Name: label_0_26
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &350116618
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350116617}
- 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: 996818578}
- - {fileID: 1669663547}
- m_Father: {fileID: 879012035}
- m_RootOrder: 26
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &350782575
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 350782576}
- - component: {fileID: 350782578}
- - component: {fileID: 350782577}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &350782576
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350782575}
- 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: 756114645}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &350782577
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350782575}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &350782578
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350782575}
---- !u!1 &350838053
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 350838054}
- - component: {fileID: 350838056}
- - component: {fileID: 350838055}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &350838054
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350838053}
- 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: 610721074}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &350838055
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350838053}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &350838056
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350838053}
---- !u!1 &350851382
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 350851383}
- - component: {fileID: 350851385}
- - component: {fileID: 350851384}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &350851383
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350851382}
- 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: 1824376093}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &350851384
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350851382}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &350851385
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 350851382}
---- !u!1 &351863425
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 351863426}
- - component: {fileID: 351863428}
- - component: {fileID: 351863427}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &351863426
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 351863425}
- 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: 551855691}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &351863427
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 351863425}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &351863428
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 351863425}
---- !u!1 &352592300
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 352592301}
- m_Layer: 0
- m_Name: label_0_61
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &352592301
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 352592300}
- 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: 529536100}
- - {fileID: 1467903205}
- m_Father: {fileID: 879012035}
- m_RootOrder: 61
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &358606463
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 358606464}
- - component: {fileID: 358606466}
- - component: {fileID: 358606465}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &358606464
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 358606463}
- 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: 1589619011}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &358606465
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 358606463}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &358606466
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 358606463}
---- !u!1 &360550507
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 360550508}
- m_Layer: 0
- m_Name: label_0_14
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &360550508
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 360550507}
- 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: 625802210}
- - {fileID: 412866573}
- m_Father: {fileID: 894361979}
- m_RootOrder: 14
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &364364320
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 364364321}
- - component: {fileID: 364364323}
- - component: {fileID: 364364322}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &364364321
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 364364320}
- 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: 1565637805}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &364364322
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 364364320}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &364364323
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 364364320}
---- !u!1 &365298054
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 365298055}
- m_Layer: 0
- m_Name: label_0_29
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &365298055
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 365298054}
- 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: 37676095}
- - {fileID: 555707123}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 29
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &366324263
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 366324264}
- m_Layer: 0
- m_Name: axis_y2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &366324264
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 366324263}
- 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: 932481337}
- - {fileID: 114536545}
- - {fileID: 1587374934}
- - {fileID: 1909085102}
- - {fileID: 1959311326}
- m_Father: {fileID: 237605830}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &370304923
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 370304924}
- - component: {fileID: 370304926}
- - component: {fileID: 370304925}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &370304924
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 370304923}
- 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: 154528125}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &370304925
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 370304923}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &370304926
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 370304923}
---- !u!1 &377203169
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 377203170}
- - component: {fileID: 377203172}
- - component: {fileID: 377203171}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &377203170
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 377203169}
- 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: 663222809}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &377203171
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 377203169}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &377203172
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 377203169}
---- !u!1 &378838250
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 378838251}
- - component: {fileID: 378838253}
- - component: {fileID: 378838252}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &378838251
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 378838250}
- 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: 46968580}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &378838252
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 378838250}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &378838253
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 378838250}
---- !u!1 &384980630
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 384980631}
- - component: {fileID: 384980633}
- - component: {fileID: 384980632}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &384980631
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 384980630}
- 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: 2066190867}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &384980632
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 384980630}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &384980633
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 384980630}
---- !u!1 &386895852
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 386895853}
- m_Layer: 0
- m_Name: label_0_39
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &386895853
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 386895852}
- 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: 1559823617}
- - {fileID: 1985108911}
- m_Father: {fileID: 879012035}
- m_RootOrder: 39
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &388794013
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 388794014}
- - component: {fileID: 388794016}
- - component: {fileID: 388794015}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &388794014
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 388794013}
- 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: 1088827721}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &388794015
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 388794013}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &388794016
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 388794013}
---- !u!1 &390103403
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 390103404}
- - component: {fileID: 390103406}
- - component: {fileID: 390103405}
- 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 &390103404
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 390103403}
- 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: 125763605}
- 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: 396, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &390103405
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 390103403}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:03
---- !u!222 &390103406
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 390103403}
---- !u!1 &390480750
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 390480751}
- - component: {fileID: 390480753}
- - component: {fileID: 390480752}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &390480751
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 390480750}
- 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: 1265568032}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &390480752
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 390480750}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &390480753
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 390480750}
---- !u!1 &393212493
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 393212494}
- - component: {fileID: 393212496}
- - component: {fileID: 393212495}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &393212494
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 393212493}
- 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: 1550488560}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &393212495
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 393212493}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &393212496
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 393212493}
---- !u!1 &393892057
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 393892058}
- m_Layer: 0
- m_Name: label_0_63
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &393892058
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 393892057}
- 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: 239670304}
- - {fileID: 1495841218}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 63
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &395864208
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 395864209}
- m_Layer: 0
- m_Name: label_0_83
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &395864209
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 395864208}
- 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: 1599560252}
- - {fileID: 1911958473}
- m_Father: {fileID: 894361979}
- m_RootOrder: 83
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &397608101
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 397608102}
- - component: {fileID: 397608104}
- - component: {fileID: 397608103}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &397608102
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 397608101}
- 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: 1738171052}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &397608103
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 397608101}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &397608104
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 397608101}
---- !u!1 &399349870
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 399349871}
- m_Layer: 0
- m_Name: axis_x2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &399349871
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 399349870}
- 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: 796364469}
- - {fileID: 667402541}
- - {fileID: 2113120186}
- - {fileID: 1162852774}
- - {fileID: 736390036}
- m_Father: {fileID: 237605830}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &405131625
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 405131626}
- - component: {fileID: 405131628}
- - component: {fileID: 405131627}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &405131626
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 405131625}
- 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: 1095146674}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &405131627
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 405131625}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &405131628
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 405131625}
---- !u!1 &406082602
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 406082603}
- m_Layer: 0
- m_Name: label_0_75
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &406082603
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 406082602}
- 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: 1216813112}
- - {fileID: 2103414469}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 75
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &410739356
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 410739357}
- m_Layer: 0
- m_Name: label_0_68
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &410739357
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 410739356}
- 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: 722749992}
- - {fileID: 229120080}
- m_Father: {fileID: 894361979}
- m_RootOrder: 68
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &411993380
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 411993381}
- m_Layer: 0
- m_Name: label_0_1
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &411993381
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 411993380}
- 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: 1920023786}
- - {fileID: 899538935}
- m_Father: {fileID: 894361979}
- m_RootOrder: 1
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &412866572
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 412866573}
- - component: {fileID: 412866575}
- - component: {fileID: 412866574}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &412866573
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 412866572}
- 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: 360550508}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &412866574
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 412866572}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &412866575
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 412866572}
---- !u!1 &414028637
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 414028638}
- - component: {fileID: 414028640}
- - component: {fileID: 414028639}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &414028638
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 414028637}
- 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: 497491741}
- 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 &414028639
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 414028637}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 0
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 1
- m_LineSpacing: 1
- m_Text: Text
---- !u!222 &414028640
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 414028637}
---- !u!1 &414556829
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 414556830}
- m_Layer: 0
- m_Name: label_0_58
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &414556830
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 414556829}
- 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: 1195981929}
- - {fileID: 1385922750}
- m_Father: {fileID: 879012035}
- m_RootOrder: 58
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &414931746
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 414931747}
- - component: {fileID: 414931749}
- - component: {fileID: 414931748}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &414931747
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 414931746}
- 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: 582417063}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &414931748
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 414931746}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &414931749
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 414931746}
---- !u!1 &416713223
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 416713224}
- - component: {fileID: 416713226}
- - component: {fileID: 416713225}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &416713224
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 416713223}
- 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: 1827057369}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &416713225
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 416713223}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &416713226
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 416713223}
---- !u!1 &420783578
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 420783579}
- - component: {fileID: 420783581}
- - component: {fileID: 420783580}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &420783579
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 420783578}
- 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: 653945287}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &420783580
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 420783578}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &420783581
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 420783578}
---- !u!1 &421020833
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 421020834}
- - component: {fileID: 421020836}
- - component: {fileID: 421020835}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &421020834
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 421020833}
- 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: 92608281}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &421020835
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 421020833}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &421020836
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 421020833}
---- !u!1 &422936933
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 422936934}
- - component: {fileID: 422936936}
- - component: {fileID: 422936935}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &422936934
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 422936933}
- 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: 225774076}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &422936935
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 422936933}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &422936936
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 422936933}
---- !u!1 &423166857
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 423166858}
- - component: {fileID: 423166860}
- - component: {fileID: 423166859}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &423166858
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 423166857}
- 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: 2005945473}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &423166859
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 423166857}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &423166860
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 423166857}
---- !u!1 &423381751
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 423381752}
- m_Layer: 0
- m_Name: label_0_26
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &423381752
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 423381751}
- 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: 177938800}
- - {fileID: 1612537614}
- m_Father: {fileID: 894361979}
- m_RootOrder: 26
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &426539877
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 426539878}
- m_Layer: 0
- m_Name: label_0_23
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &426539878
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 426539877}
- 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: 321053222}
- - {fileID: 1057542514}
- m_Father: {fileID: 894361979}
- m_RootOrder: 23
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &426998940
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 426998941}
- - component: {fileID: 426998943}
- - component: {fileID: 426998942}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &426998941
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 426998940}
- 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: 218741664}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &426998942
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 426998940}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &426998943
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 426998940}
---- !u!1 &428550737
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 428550738}
- m_Layer: 0
- m_Name: label_0_48
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &428550738
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 428550737}
- 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: 476199263}
- - {fileID: 1216059566}
- m_Father: {fileID: 894361979}
- m_RootOrder: 48
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &428744861
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 428744862}
- m_Layer: 0
- m_Name: label_0_59
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &428744862
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 428744861}
- 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: 743337402}
- - {fileID: 1460165096}
- m_Father: {fileID: 879012035}
- m_RootOrder: 59
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &431063368
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 431063369}
- - component: {fileID: 431063371}
- - component: {fileID: 431063370}
- m_Layer: 0
- m_Name: axis_x6
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &431063369
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 431063368}
- 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: 607005197}
- 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: 1261, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &431063370
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 431063368}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:07
---- !u!222 &431063371
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 431063368}
---- !u!1 &433194774
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 433194775}
- m_Layer: 0
- m_Name: label_0_71
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &433194775
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 433194774}
- 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: 2139634797}
- - {fileID: 799740029}
- m_Father: {fileID: 894361979}
- m_RootOrder: 71
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &433295850
GameObject:
m_ObjectHideFlags: 0
@@ -17824,394 +23628,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 433295850}
---- !u!1 &434559238
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 434559239}
- m_Layer: 0
- m_Name: label_0_22
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &434559239
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 434559238}
- 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: 1361202310}
- - {fileID: 1229740950}
- m_Father: {fileID: 879012035}
- m_RootOrder: 22
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &435721526
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 435721527}
- - component: {fileID: 435721529}
- - component: {fileID: 435721528}
- m_Layer: 0
- m_Name: axis_x2_label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &435721527
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 435721526}
- 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: 930288101}
- m_Father: {fileID: 1347932761}
- 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: 400}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &435721528
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 435721526}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &435721529
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 435721526}
---- !u!1 &436519441
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 436519442}
- - component: {fileID: 436519444}
- - component: {fileID: 436519443}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &436519442
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 436519441}
- 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: 564418865}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &436519443
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 436519441}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &436519444
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 436519441}
---- !u!1 &437145756
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 437145757}
- - component: {fileID: 437145759}
- - component: {fileID: 437145758}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &437145757
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 437145756}
- 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: 1638820065}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &437145758
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 437145756}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &437145759
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 437145756}
---- !u!1 &440471121
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 440471122}
- - component: {fileID: 440471124}
- - component: {fileID: 440471123}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &440471122
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 440471121}
- 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: 25195271}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &440471123
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 440471121}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &440471124
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 440471121}
---- !u!1 &445193238
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 445193239}
- - component: {fileID: 445193241}
- - component: {fileID: 445193240}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &445193239
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 445193238}
- 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: 1458321885}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &445193240
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 445193238}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &445193241
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 445193238}
--- !u!1 &445302294
GameObject:
m_ObjectHideFlags: 0
@@ -18346,2739 +23762,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 445302294}
---- !u!1 &450175288
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 450175289}
- - component: {fileID: 450175291}
- - component: {fileID: 450175290}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &450175289
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 450175288}
- 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: 942770258}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &450175290
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 450175288}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &450175291
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 450175288}
---- !u!1 &450391773
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 450391774}
- - component: {fileID: 450391776}
- - component: {fileID: 450391775}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &450391774
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 450391773}
- 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: 1013676475}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &450391775
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 450391773}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &450391776
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 450391773}
---- !u!1 &453247986
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 453247987}
- - component: {fileID: 453247989}
- - component: {fileID: 453247988}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &453247987
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 453247986}
- 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: 1114847434}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &453247988
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 453247986}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &453247989
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 453247986}
---- !u!1 &455406442
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 455406443}
- m_Layer: 0
- m_Name: label_0_33
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &455406443
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 455406442}
- 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: 259067975}
- - {fileID: 2010847955}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 33
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &456454420
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 456454421}
- - component: {fileID: 456454423}
- - component: {fileID: 456454422}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &456454421
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 456454420}
- 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: 1399642849}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &456454422
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 456454420}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &456454423
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 456454420}
---- !u!1 &460461181
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 460461182}
- - component: {fileID: 460461184}
- - component: {fileID: 460461183}
- 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 &460461182
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 460461181}
- 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: 1744434248}
- 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: 678.9413, y: -147}
- m_SizeDelta: {x: 452.6275, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &460461183
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 460461181}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &460461184
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 460461181}
---- !u!1 &462057712
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 462057713}
- - component: {fileID: 462057715}
- - component: {fileID: 462057714}
- m_Layer: 0
- m_Name: axis_x6
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &462057713
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 462057712}
- 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: 125763605}
- 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: 1261, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &462057714
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 462057712}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:07
---- !u!222 &462057715
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 462057712}
---- !u!1 &466372292
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 466372293}
- - component: {fileID: 466372295}
- - component: {fileID: 466372294}
- m_Layer: 0
- m_Name: title_sub
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &466372293
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 466372292}
- 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: 1160781940}
- 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: -26}
- m_SizeDelta: {x: 1810.51, y: 14}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &466372294
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 466372292}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 14
- 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 &466372295
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 466372292}
---- !u!1 &472736220
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 472736221}
- - component: {fileID: 472736223}
- - component: {fileID: 472736222}
- m_Layer: 0
- m_Name: datazoomstart
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &472736221
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 472736220}
- 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: 259383532}
- 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: 400}
- m_SizeDelta: {x: 200, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &472736222
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 472736220}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &472736223
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 472736220}
---- !u!1 &474297827
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 474297828}
- m_Layer: 0
- m_Name: label_0_24
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &474297828
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 474297827}
- 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: 1658634695}
- - {fileID: 1867899952}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 24
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &475512763
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 475512764}
- - component: {fileID: 475512766}
- - component: {fileID: 475512765}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &475512764
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 475512763}
- 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: 1570042025}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &475512765
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 475512763}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &475512766
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 475512763}
---- !u!1 &476199262
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 476199263}
- - component: {fileID: 476199265}
- - component: {fileID: 476199264}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &476199263
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 476199262}
- 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: 428550738}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &476199264
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 476199262}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &476199265
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 476199262}
---- !u!1 &477946296
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 477946297}
- - component: {fileID: 477946299}
- - component: {fileID: 477946298}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &477946297
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 477946296}
- 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: 1167528550}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &477946298
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 477946296}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &477946299
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 477946296}
---- !u!1 &478957979
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 478957980}
- m_Layer: 0
- m_Name: label_0_79
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &478957980
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 478957979}
- 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: 6552809}
- - {fileID: 93573494}
- m_Father: {fileID: 879012035}
- m_RootOrder: 79
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &483359467
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 483359468}
- - component: {fileID: 483359470}
- - component: {fileID: 483359469}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &483359468
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 483359467}
- 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: 922097054}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &483359469
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 483359467}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &483359470
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 483359467}
---- !u!1 &483573883
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 483573884}
- - component: {fileID: 483573886}
- - component: {fileID: 483573885}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &483573884
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 483573883}
- 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: 489799707}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &483573885
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 483573883}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &483573886
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 483573883}
---- !u!1 &483705006
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 483705007}
- - component: {fileID: 483705009}
- - component: {fileID: 483705008}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &483705007
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 483705006}
- 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: 1551885301}
- 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 &483705008
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 483705006}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &483705009
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 483705006}
---- !u!1 &484336705
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 484336706}
- - component: {fileID: 484336708}
- - component: {fileID: 484336707}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &484336706
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 484336705}
- 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: 1349066357}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &484336707
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 484336705}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &484336708
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 484336705}
---- !u!1 &485125441
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 485125442}
- m_Layer: 0
- m_Name: label_0_0
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &485125442
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 485125441}
- 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: 93741827}
- - {fileID: 37972301}
- m_Father: {fileID: 879012035}
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &489403622
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 489403623}
- - component: {fileID: 489403625}
- - component: {fileID: 489403624}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &489403623
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 489403622}
- 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: 1478283434}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &489403624
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 489403622}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &489403625
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 489403622}
---- !u!1 &489799706
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 489799707}
- m_Layer: 0
- m_Name: label_0_97
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &489799707
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 489799706}
- 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: 483573884}
- - {fileID: 1240646901}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 97
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &490377967
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 490377968}
- - component: {fileID: 490377970}
- - component: {fileID: 490377969}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &490377968
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 490377967}
- 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: 1846086162}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &490377969
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 490377967}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &490377970
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 490377967}
---- !u!1 &491613632
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 491613633}
- - component: {fileID: 491613635}
- - component: {fileID: 491613634}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &491613633
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 491613632}
- 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: 859999235}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &491613634
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 491613632}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &491613635
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 491613632}
---- !u!1 &495536888
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 495536889}
- - component: {fileID: 495536891}
- - component: {fileID: 495536890}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &495536889
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 495536888}
- 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: 1431086154}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &495536890
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 495536888}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &495536891
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 495536888}
---- !u!1 &497491740
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 497491741}
- - component: {fileID: 497491743}
- - component: {fileID: 497491742}
- m_Layer: 0
- m_Name: content
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &497491741
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 497491740}
- 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: 414028638}
- m_Father: {fileID: 2052739601}
- 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 &497491742
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 497491740}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &497491743
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 497491740}
---- !u!1 &498437338
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 498437339}
- - component: {fileID: 498437341}
- - component: {fileID: 498437340}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &498437339
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 498437338}
- 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: 831969783}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &498437340
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 498437338}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &498437341
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 498437338}
---- !u!1 &500213283
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 500213284}
- - component: {fileID: 500213286}
- - component: {fileID: 500213285}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &500213284
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 500213283}
- 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: 1808317387}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &500213285
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 500213283}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &500213286
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 500213283}
---- !u!1 &502366385
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 502366386}
- - component: {fileID: 502366388}
- - component: {fileID: 502366387}
- m_Layer: 0
- m_Name: axis_y22
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &502366386
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 502366385}
- 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: 1527990582}
- 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: 1818.51, y: 70}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &502366387
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 502366385}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &502366388
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 502366385}
---- !u!1 &509462563
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 509462564}
- - component: {fileID: 509462566}
- - component: {fileID: 509462565}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &509462564
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 509462563}
- 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: 51310537}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &509462565
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 509462563}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &509462566
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 509462563}
---- !u!1 &517073282
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 517073283}
- m_Layer: 0
- m_Name: label_0_48
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &517073283
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 517073282}
- 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: 1062876086}
- - {fileID: 824810213}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 48
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &521225945
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 521225946}
- m_Layer: 0
- m_Name: label_0_4
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &521225946
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 521225945}
- 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: 1179154440}
- - {fileID: 1713024664}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 4
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &521913547
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 521913548}
- - component: {fileID: 521913550}
- - component: {fileID: 521913549}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &521913548
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 521913547}
- 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: 1225021475}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &521913549
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 521913547}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &521913550
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 521913547}
---- !u!1 &522121941
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 522121942}
- m_Layer: 0
- m_Name: tooltip
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &522121942
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 522121941}
- 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: 1104111042}
- - {fileID: 705288756}
- - {fileID: 857837528}
- - {fileID: 1551885301}
- - {fileID: 1418845304}
- m_Father: {fileID: 680358239}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &523651050
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 523651051}
- - component: {fileID: 523651053}
- - component: {fileID: 523651052}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &523651051
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 523651050}
- 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: 1292924290}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &523651052
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 523651050}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &523651053
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 523651050}
---- !u!1 &525847021
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 525847022}
- - component: {fileID: 525847024}
- - component: {fileID: 525847023}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &525847022
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 525847021}
- 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: 1808317387}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &525847023
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 525847021}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &525847024
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 525847021}
---- !u!1 &527069756
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 527069757}
- - component: {fileID: 527069759}
- - component: {fileID: 527069758}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &527069757
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 527069756}
- 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: 1743695887}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &527069758
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 527069756}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &527069759
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 527069756}
---- !u!1 &527495361
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 527495362}
- - component: {fileID: 527495364}
- - component: {fileID: 527495363}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &527495362
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 527495361}
- 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: 38184951}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &527495363
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 527495361}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &527495364
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 527495361}
---- !u!1 &529536099
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 529536100}
- - component: {fileID: 529536102}
- - component: {fileID: 529536101}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &529536100
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 529536099}
- 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: 352592301}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &529536101
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 529536099}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &529536102
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 529536099}
---- !u!1 &532122826
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 532122827}
- - component: {fileID: 532122829}
- - component: {fileID: 532122828}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &532122827
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 532122826}
- 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: 25195271}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &532122828
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 532122826}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &532122829
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 532122826}
---- !u!1 &539251175
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 539251176}
- - component: {fileID: 539251178}
- - component: {fileID: 539251177}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &539251176
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 539251175}
- 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: 1682346598}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &539251177
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 539251175}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &539251178
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 539251175}
---- !u!1 &540746926
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 540746927}
- - component: {fileID: 540746929}
- - component: {fileID: 540746928}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &540746927
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 540746926}
- 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: 1813289517}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &540746928
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 540746926}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &540746929
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 540746926}
---- !u!1 &541119935
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 541119936}
- - component: {fileID: 541119938}
- - component: {fileID: 541119937}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &541119936
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 541119935}
- 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: 286486331}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &541119937
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 541119935}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &541119938
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 541119935}
---- !u!1 &543791266
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 543791267}
- m_Layer: 0
- m_Name: label_0_0
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &543791267
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 543791266}
- 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: 20660570}
- - {fileID: 1647535672}
- m_Father: {fileID: 1101421955}
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &546035820
GameObject:
m_ObjectHideFlags: 0
@@ -21108,6 +23791,10 @@ MonoBehaviour:
m_EditorClassIdentifier:
m_NowVersion: 1.4.0_20200411
m_NewVersion:
+ m_ChartList:
+ - {fileID: 680358240}
+ - {fileID: 1304222266}
+ - {fileID: 237605831}
--- !u!4 &546035822
Transform:
m_ObjectHideFlags: 0
@@ -21121,694 +23808,6 @@ Transform:
m_Father: {fileID: 0}
m_RootOrder: 4
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &547783943
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 547783944}
- - component: {fileID: 547783946}
- - component: {fileID: 547783945}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &547783944
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 547783943}
- 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: 2145200427}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &547783945
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 547783943}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &547783946
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 547783943}
---- !u!1 &549122813
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 549122814}
- - component: {fileID: 549122816}
- - component: {fileID: 549122815}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &549122814
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 549122813}
- 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: 611541361}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &549122815
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 549122813}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &549122816
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 549122813}
---- !u!1 &549807173
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 549807174}
- - component: {fileID: 549807176}
- - component: {fileID: 549807175}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &549807174
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 549807173}
- 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: 1904395403}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &549807175
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 549807173}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &549807176
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 549807173}
---- !u!1 &550636964
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 550636965}
- - component: {fileID: 550636967}
- - component: {fileID: 550636966}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &550636965
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 550636964}
- 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: 1794847668}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &550636966
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 550636964}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &550636967
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 550636964}
---- !u!1 &550798286
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 550798287}
- m_Layer: 0
- m_Name: label_0_19
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &550798287
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 550798286}
- 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: 1927455087}
- - {fileID: 1875828570}
- m_Father: {fileID: 894361979}
- m_RootOrder: 19
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &551855690
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 551855691}
- m_Layer: 0
- m_Name: label_0_4
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &551855691
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 551855690}
- 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: 1688280437}
- - {fileID: 351863426}
- m_Father: {fileID: 879012035}
- m_RootOrder: 4
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &554873559
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 554873560}
- 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 &554873560
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 554873559}
- 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: 1573009593}
- - {fileID: 1194826222}
- - {fileID: 799520526}
- - {fileID: 1204256123}
- - {fileID: 2107440742}
- m_Father: {fileID: 680358239}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &555707122
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 555707123}
- - component: {fileID: 555707125}
- - component: {fileID: 555707124}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &555707123
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 555707122}
- 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: 365298055}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &555707124
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 555707122}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &555707125
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 555707122}
---- !u!1 &556563282
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 556563283}
- - component: {fileID: 556563285}
- - component: {fileID: 556563284}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &556563283
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 556563282}
- 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: 326900095}
- 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 &556563284
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 556563282}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &556563285
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 556563282}
---- !u!1 &557672464
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 557672465}
- - component: {fileID: 557672467}
- - component: {fileID: 557672466}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &557672465
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 557672464}
- 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: 79083272}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &557672466
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 557672464}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &557672467
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 557672464}
---- !u!1 &559702551
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 559702552}
- - component: {fileID: 559702554}
- - component: {fileID: 559702553}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &559702552
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 559702551}
- 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: 1349066357}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &559702553
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 559702551}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &559702554
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 559702551}
--- !u!1 &561575273
GameObject:
m_ObjectHideFlags: 0
@@ -21883,3774 +23882,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 561575273}
---- !u!1 &561594143
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 561594144}
- m_Layer: 0
- m_Name: label_0_72
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &561594144
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 561594143}
- 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: 649597060}
- - {fileID: 1701225152}
- m_Father: {fileID: 894361979}
- m_RootOrder: 72
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &561691083
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 561691084}
- - component: {fileID: 561691086}
- - component: {fileID: 561691085}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &561691084
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 561691083}
- 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: 1624427530}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &561691085
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 561691083}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &561691086
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 561691083}
---- !u!1 &562485110
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 562485111}
- m_Layer: 0
- m_Name: label_0_80
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &562485111
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 562485110}
- 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: 1717650139}
- - {fileID: 1203609364}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 80
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &564418864
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 564418865}
- m_Layer: 0
- m_Name: label_0_85
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &564418865
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 564418864}
- 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: 436519442}
- - {fileID: 624050069}
- m_Father: {fileID: 894361979}
- m_RootOrder: 85
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &568502849
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 568502850}
- - component: {fileID: 568502852}
- - component: {fileID: 568502851}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &568502850
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 568502849}
- 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: 2037297520}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &568502851
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 568502849}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &568502852
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 568502849}
---- !u!1 &569155129
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 569155130}
- m_Layer: 0
- m_Name: label_0_42
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &569155130
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 569155129}
- 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: 1664188494}
- - {fileID: 1264668857}
- m_Father: {fileID: 894361979}
- m_RootOrder: 42
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &569417970
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 569417971}
- m_Layer: 0
- m_Name: label_0_27
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &569417971
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 569417970}
- 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: 2064709921}
- - {fileID: 1851355885}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 27
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &571940762
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 571940763}
- - component: {fileID: 571940765}
- - component: {fileID: 571940764}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &571940763
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 571940762}
- 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: 1565637805}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &571940764
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 571940762}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &571940765
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 571940762}
---- !u!1 &573375649
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 573375650}
- m_Layer: 0
- m_Name: label_0_11
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &573375650
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 573375649}
- 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: 985643751}
- - {fileID: 1822901261}
- m_Father: {fileID: 894361979}
- m_RootOrder: 11
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &573783755
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 573783756}
- - component: {fileID: 573783758}
- - component: {fileID: 573783757}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &573783756
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 573783755}
- 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: 1608253157}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &573783757
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 573783755}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &573783758
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 573783755}
---- !u!1 &577248779
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 577248780}
- - component: {fileID: 577248782}
- - component: {fileID: 577248781}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &577248780
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 577248779}
- 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: 1493559516}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &577248781
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 577248779}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &577248782
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 577248779}
---- !u!1 &582417062
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 582417063}
- m_Layer: 0
- m_Name: label_0_38
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &582417063
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 582417062}
- 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: 2134569524}
- - {fileID: 414931747}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 38
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &582726781
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 582726782}
- - component: {fileID: 582726784}
- - component: {fileID: 582726783}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &582726782
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 582726781}
- 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: 225774076}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &582726783
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 582726781}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &582726784
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 582726781}
---- !u!1 &583823646
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 583823647}
- - component: {fileID: 583823649}
- - component: {fileID: 583823648}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &583823647
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 583823646}
- 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: 891500381}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &583823648
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 583823646}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &583823649
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 583823646}
---- !u!1 &587350532
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 587350533}
- - component: {fileID: 587350535}
- - component: {fileID: 587350534}
- m_Layer: 0
- m_Name: axis_y23
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &587350533
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 587350532}
- 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: 2065853256}
- 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: 1788, y: 270}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &587350534
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 587350532}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &587350535
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 587350532}
---- !u!1 &589677631
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 589677632}
- - component: {fileID: 589677634}
- - component: {fileID: 589677633}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &589677632
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 589677631}
- 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: 1477220903}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &589677633
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 589677631}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &589677634
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 589677631}
---- !u!1 &591936439
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 591936440}
- - component: {fileID: 591936442}
- - component: {fileID: 591936441}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &591936440
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 591936439}
- 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: 1820314054}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &591936441
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 591936439}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &591936442
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 591936439}
---- !u!1 &596196480
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 596196481}
- - component: {fileID: 596196483}
- - component: {fileID: 596196482}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &596196481
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 596196480}
- 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: 1779414254}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &596196482
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 596196480}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &596196483
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 596196480}
---- !u!1 &599452056
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 599452057}
- - component: {fileID: 599452059}
- - component: {fileID: 599452058}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &599452057
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 599452056}
- 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: 2117503485}
- 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 &599452058
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 599452056}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 0
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 1
- m_LineSpacing: 1
- m_Text: Text
---- !u!222 &599452059
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 599452056}
---- !u!1 &599470177
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 599470178}
- - component: {fileID: 599470180}
- - component: {fileID: 599470179}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &599470178
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 599470177}
- 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: 1408578610}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &599470179
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 599470177}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &599470180
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 599470177}
---- !u!1 &600015463
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 600015464}
- - component: {fileID: 600015466}
- - component: {fileID: 600015465}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &600015464
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 600015463}
- 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: 1950796009}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &600015465
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 600015463}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &600015466
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 600015463}
---- !u!1 &600428084
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 600428085}
- - component: {fileID: 600428087}
- - component: {fileID: 600428086}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &600428085
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 600428084}
- 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: 1051619696}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &600428086
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 600428084}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &600428087
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 600428084}
---- !u!1 &601281331
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 601281332}
- - component: {fileID: 601281334}
- - component: {fileID: 601281333}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &601281332
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 601281331}
- 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: 2017736213}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &601281333
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 601281331}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &601281334
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 601281331}
---- !u!1 &604124230
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 604124231}
- - component: {fileID: 604124233}
- - component: {fileID: 604124232}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &604124231
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 604124230}
- 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: 2044490130}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &604124232
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 604124230}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &604124233
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 604124230}
---- !u!1 &607005196
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 607005197}
- 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 &607005197
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 607005196}
- 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: 1745328375}
- - {fileID: 114332255}
- - {fileID: 2107997037}
- - {fileID: 1848920625}
- - {fileID: 2011380546}
- - {fileID: 1321080230}
- - {fileID: 431063369}
- - {fileID: 188148709}
- - {fileID: 628820384}
- - {fileID: 871923285}
- m_Father: {fileID: 237605830}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &609515171
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 609515172}
- m_Layer: 0
- m_Name: label_0_35
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &609515172
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 609515171}
- 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: 1093924200}
- - {fileID: 1575534660}
- m_Father: {fileID: 894361979}
- m_RootOrder: 35
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &610721073
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 610721074}
- m_Layer: 0
- m_Name: label_0_64
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &610721074
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 610721073}
- 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: 350838054}
- - {fileID: 325560288}
- m_Father: {fileID: 879012035}
- m_RootOrder: 64
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &611541360
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 611541361}
- m_Layer: 0
- m_Name: label_0_10
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &611541361
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 611541360}
- 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: 549122814}
- - {fileID: 895541290}
- m_Father: {fileID: 879012035}
- m_RootOrder: 10
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &614107539
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 614107540}
- m_Layer: 0
- m_Name: label_0_56
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &614107540
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 614107539}
- 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: 1239995631}
- - {fileID: 1637345741}
- m_Father: {fileID: 894361979}
- m_RootOrder: 56
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &617775940
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 617775941}
- m_Layer: 0
- m_Name: datazoom
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &617775941
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 617775940}
- 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: 1892050307}
- - {fileID: 1913019391}
- m_Father: {fileID: 237605830}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &618912364
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 618912365}
- - component: {fileID: 618912367}
- - component: {fileID: 618912366}
- m_Layer: 0
- m_Name: datazoomend
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &618912365
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 618912364}
- 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: 1715653984}
- 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: 140}
- m_SizeDelta: {x: 200, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &618912366
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 618912364}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &618912367
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 618912364}
---- !u!1 &624050068
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 624050069}
- - component: {fileID: 624050071}
- - component: {fileID: 624050070}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &624050069
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 624050068}
- 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: 564418865}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &624050070
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 624050068}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &624050071
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 624050068}
---- !u!1 &625802209
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 625802210}
- - component: {fileID: 625802212}
- - component: {fileID: 625802211}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &625802210
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 625802209}
- 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: 360550508}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &625802211
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 625802209}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &625802212
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 625802209}
---- !u!1 &626502563
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 626502564}
- - component: {fileID: 626502566}
- - component: {fileID: 626502565}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &626502564
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 626502563}
- 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: 2061986587}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &626502565
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 626502563}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &626502566
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 626502563}
---- !u!1 &627627439
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 627627440}
- m_Layer: 0
- m_Name: label_0_20
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &627627440
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 627627439}
- 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: 1362925385}
- - {fileID: 1712144604}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 20
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &628820383
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 628820384}
- - component: {fileID: 628820386}
- - component: {fileID: 628820385}
- m_Layer: 0
- m_Name: axis_x8
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &628820384
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 628820383}
- 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: 607005197}
- 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: 1607, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &628820385
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 628820383}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:09
---- !u!222 &628820386
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 628820383}
---- !u!1 &632154564
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 632154565}
- - component: {fileID: 632154567}
- - component: {fileID: 632154566}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &632154565
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 632154564}
- 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: 1698923728}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &632154566
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 632154564}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &632154567
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 632154564}
---- !u!1 &632641530
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 632641531}
- - component: {fileID: 632641533}
- - component: {fileID: 632641532}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &632641531
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 632641530}
- 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: 128228061}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &632641532
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 632641530}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &632641533
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 632641530}
---- !u!1 &639983412
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 639983413}
- - component: {fileID: 639983415}
- - component: {fileID: 639983414}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &639983413
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 639983412}
- 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: 717382625}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &639983414
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 639983412}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &639983415
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 639983412}
---- !u!1 &640729149
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 640729150}
- m_Layer: 0
- m_Name: label_0_62
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &640729150
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 640729149}
- 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: 1612696014}
- - {fileID: 2087026994}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 62
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &644532667
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 644532668}
- - component: {fileID: 644532670}
- - component: {fileID: 644532669}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &644532668
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 644532667}
- 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: 963765539}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &644532669
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 644532667}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &644532670
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 644532667}
---- !u!1 &644991339
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 644991340}
- - component: {fileID: 644991342}
- - component: {fileID: 644991341}
- m_Layer: 0
- m_Name: title_sub
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &644991340
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 644991339}
- 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: 314818574}
- 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: 1810, y: 14}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &644991341
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 644991339}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 14
- 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 &644991342
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 644991339}
---- !u!1 &645460153
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 645460154}
- - component: {fileID: 645460156}
- - component: {fileID: 645460155}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &645460154
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 645460153}
- 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: 692382225}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &645460155
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 645460153}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &645460156
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 645460153}
---- !u!1 &646296367
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 646296368}
- - component: {fileID: 646296370}
- - component: {fileID: 646296369}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &646296368
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 646296367}
- 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: 1075455951}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &646296369
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 646296367}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &646296370
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 646296367}
---- !u!1 &647336198
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 647336199}
- m_Layer: 0
- m_Name: label_0_95
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &647336199
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 647336198}
- 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: 1188264454}
- - {fileID: 745753775}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 95
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &649597059
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 649597060}
- - component: {fileID: 649597062}
- - component: {fileID: 649597061}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &649597060
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 649597059}
- 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: 561594144}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &649597061
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 649597059}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &649597062
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 649597059}
---- !u!1 &650023524
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 650023525}
- m_Layer: 0
- m_Name: label_0_90
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &650023525
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 650023524}
- 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: 1108565930}
- - {fileID: 870931725}
- m_Father: {fileID: 894361979}
- m_RootOrder: 90
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &651176447
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 651176448}
- - component: {fileID: 651176450}
- - component: {fileID: 651176449}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &651176448
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 651176447}
- 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: 280618040}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &651176449
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 651176447}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &651176450
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 651176447}
---- !u!1 &653945286
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 653945287}
- m_Layer: 0
- m_Name: label_0_12
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &653945287
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 653945286}
- 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: 337797854}
- - {fileID: 420783579}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 12
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &655368974
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 655368975}
- m_Layer: 0
- m_Name: label_0_14
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &655368975
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 655368974}
- 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: 672512882}
- - {fileID: 1285440029}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 14
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &656665005
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 656665006}
- - component: {fileID: 656665008}
- - component: {fileID: 656665007}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &656665006
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 656665005}
- 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: 20923469}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &656665007
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 656665005}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &656665008
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 656665005}
---- !u!1 &663222808
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 663222809}
- m_Layer: 0
- m_Name: label_0_72
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &663222809
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 663222808}
- 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: 202018684}
- - {fileID: 377203170}
- m_Father: {fileID: 879012035}
- m_RootOrder: 72
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &665141035
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 665141036}
- m_Layer: 0
- m_Name: label_0_73
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &665141036
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 665141035}
- 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: 1571507639}
- - {fileID: 1657027380}
- m_Father: {fileID: 894361979}
- m_RootOrder: 73
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &665872475
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 665872476}
- - component: {fileID: 665872478}
- - component: {fileID: 665872477}
- 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 &665872476
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 665872475}
- 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: 125763605}
- 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: 742, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &665872477
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 665872475}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:07
---- !u!222 &665872478
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 665872475}
---- !u!1 &667402540
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 667402541}
- - component: {fileID: 667402543}
- - component: {fileID: 667402542}
- m_Layer: 0
- m_Name: axis_x21
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &667402541
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 667402540}
- 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: 399349871}
- 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: 742, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &667402542
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 667402540}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &667402543
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 667402540}
---- !u!1 &670167336
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 670167337}
- - component: {fileID: 670167339}
- - component: {fileID: 670167338}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &670167337
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 670167336}
- 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: 827305501}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &670167338
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 670167336}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &670167339
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 670167336}
---- !u!1 &670718772
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 670718773}
- m_Layer: 0
- m_Name: label_0_83
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &670718773
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 670718772}
- 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: 329692039}
- - {fileID: 1259337552}
- m_Father: {fileID: 879012035}
- m_RootOrder: 83
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &672512881
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 672512882}
- - component: {fileID: 672512884}
- - component: {fileID: 672512883}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &672512882
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 672512881}
- 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: 655368975}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &672512883
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 672512881}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &672512884
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 672512881}
---- !u!1 &675044592
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 675044593}
- - component: {fileID: 675044595}
- - component: {fileID: 675044594}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &675044593
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 675044592}
- 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: 1894582011}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &675044594
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 675044592}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &675044595
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 675044592}
---- !u!1 &675546637
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 675546638}
- m_Layer: 0
- m_Name: label_0_43
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &675546638
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 675546637}
- 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: 117261484}
- - {fileID: 1168445596}
- m_Father: {fileID: 879012035}
- m_RootOrder: 43
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &675755612
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 675755613}
- - component: {fileID: 675755615}
- - component: {fileID: 675755614}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &675755613
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 675755612}
- 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: 1499237570}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &675755614
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 675755612}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &675755615
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 675755612}
---- !u!1 &676330747
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 676330748}
- - component: {fileID: 676330750}
- - component: {fileID: 676330749}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &676330748
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 676330747}
- 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: 1638820065}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &676330749
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 676330747}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &676330750
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 676330747}
---- !u!1 &678326754
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 678326755}
- - component: {fileID: 678326757}
- - component: {fileID: 678326756}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &678326755
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 678326754}
- 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: 1640161967}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &678326756
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 678326754}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &678326757
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 678326754}
---- !u!1 &678577689
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 678577690}
- - component: {fileID: 678577692}
- - component: {fileID: 678577691}
- m_Layer: 0
- m_Name: axis_x21
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &678577690
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 678577689}
- 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: 1436921200}
- 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: 724.204, y: 7}
- m_SizeDelta: {x: 362.102, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &678577691
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 678577689}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &678577692
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 678577689}
---- !u!1 &678738527
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 678738528}
- m_Layer: 0
- m_Name: label_0_97
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &678738528
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 678738527}
- 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: 1157648448}
- - {fileID: 189412654}
- m_Father: {fileID: 894361979}
- m_RootOrder: 97
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &680358238
GameObject:
m_ObjectHideFlags: 0
@@ -25677,17 +23908,7 @@ RectTransform:
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: 2093877498}
- - {fileID: 954046816}
- - {fileID: 1101421955}
- - {fileID: 298716916}
- - {fileID: 259383532}
- - {fileID: 125763605}
- - {fileID: 1400674265}
- - {fileID: 554873560}
- - {fileID: 2065853256}
- - {fileID: 522121942}
+ m_Children: []
m_Father: {fileID: 88599220}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -25716,7 +23937,6 @@ MonoBehaviour:
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_ChartName:
- m_ChartUUID:
m_ChartWidth: 1810
m_ChartHeight: 400
m_ChartX: 0
@@ -25885,7 +24105,7 @@ MonoBehaviour:
m_JsonData:
m_DataFromJson: 0
m_Show: 1
- m_Text: "30\u6570\u636E"
+ m_Text: "180\u6570\u636E"
m_TextStyle:
m_JsonData:
m_DataFromJson: 0
@@ -25918,6 +24138,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -29918,6 +28150,18156 @@ MonoBehaviour:
m_Data:
- 29
- 16
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 30
+ - 16.030077
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 31
+ - 16.05984
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 32
+ - 16.089277
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 33
+ - 16.118385
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 34
+ - 16.147152
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 35
+ - 16.175571
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 36
+ - 16.20363
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 37
+ - 16.231323
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 38
+ - 16.25864
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 39
+ - 16.285576
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 40
+ - 16.312119
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 41
+ - 16.33826
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 42
+ - 16.363997
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 43
+ - 16.389317
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 44
+ - 16.414213
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 45
+ - 16.438679
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 46
+ - 16.462708
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 47
+ - 16.48629
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 48
+ - 16.509418
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 49
+ - 16.53209
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 50
+ - 16.554293
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 51
+ - 16.576021
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 52
+ - 16.597271
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 53
+ - 16.618034
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 54
+ - 16.638304
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 55
+ - 16.658075
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 56
+ - 16.677341
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 57
+ - 16.696096
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 58
+ - 16.714334
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 59
+ - 16.732052
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 60
+ - 16.749239
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 61
+ - 16.765896
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 62
+ - 16.782013
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 63
+ - 16.797588
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 64
+ - 16.812616
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 65
+ - 16.827091
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 66
+ - 16.84101
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 67
+ - 16.854368
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 68
+ - 16.86716
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 69
+ - 16.879385
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 70
+ - 16.891037
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 71
+ - 16.902113
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 72
+ - 16.91261
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 73
+ - 16.922523
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 74
+ - 16.931852
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 75
+ - 16.940592
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 76
+ - 16.94874
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 77
+ - 16.956295
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 78
+ - 16.963255
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 79
+ - 16.969616
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 80
+ - 16.975376
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 81
+ - 16.980536
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 82
+ - 16.985092
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 83
+ - 16.989044
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 84
+ - 16.99239
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 85
+ - 16.995129
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 86
+ - 16.99726
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 87
+ - 16.998781
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 88
+ - 16.999695
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 89
+ - 17
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 90
+ - 16.999695
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 91
+ - 16.998781
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 92
+ - 16.99726
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 93
+ - 16.995129
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 94
+ - 16.99239
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 95
+ - 16.989044
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 96
+ - 16.985092
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 97
+ - 16.980536
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 98
+ - 16.975376
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 99
+ - 16.969616
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 100
+ - 16.963255
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 101
+ - 16.956295
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 102
+ - 16.94874
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 103
+ - 16.940592
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 104
+ - 16.931852
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 105
+ - 16.922523
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 106
+ - 16.91261
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 107
+ - 16.902113
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 108
+ - 16.891037
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 109
+ - 16.879385
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 110
+ - 16.86716
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 111
+ - 16.854368
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 112
+ - 16.84101
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 113
+ - 16.827091
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 114
+ - 16.812616
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 115
+ - 16.797588
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 116
+ - 16.782013
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 117
+ - 16.765896
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 118
+ - 16.749239
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 119
+ - 16.73205
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 120
+ - 16.714334
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 121
+ - 16.696096
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 122
+ - 16.677341
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 123
+ - 16.658075
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 124
+ - 16.638304
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 125
+ - 16.618034
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 126
+ - 16.597271
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 127
+ - 16.576021
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 128
+ - 16.554293
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 129
+ - 16.53209
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 130
+ - 16.509418
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 131
+ - 16.48629
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 132
+ - 16.462708
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 133
+ - 16.43868
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 134
+ - 16.414213
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 135
+ - 16.389317
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 136
+ - 16.363997
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 137
+ - 16.33826
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 138
+ - 16.312119
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 139
+ - 16.285576
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 140
+ - 16.25864
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 141
+ - 16.231323
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 142
+ - 16.20363
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 143
+ - 16.17557
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 144
+ - 16.147152
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 145
+ - 16.118385
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 146
+ - 16.089277
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 147
+ - 16.05984
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 148
+ - 16.030075
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 149
+ - 16
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 150
+ - 15.969619
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 151
+ - 15.938943
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 152
+ - 15.907981
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 153
+ - 15.876742
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 154
+ - 15.845237
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 155
+ - 15.813473
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 156
+ - 15.781463
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 157
+ - 15.749213
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 158
+ - 15.716736
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 159
+ - 15.68404
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 160
+ - 15.651136
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 161
+ - 15.618034
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 162
+ - 15.5847435
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 163
+ - 15.551274
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 164
+ - 15.517638
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 165
+ - 15.483844
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 166
+ - 15.449903
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 167
+ - 15.415823
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 168
+ - 15.3816185
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 169
+ - 15.347297
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 170
+ - 15.312869
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 171
+ - 15.278346
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 172
+ - 15.243738
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 173
+ - 15.209057
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 174
+ - 15.174312
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 175
+ - 15.139513
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 176
+ - 15.104672
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 177
+ - 15.069798
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 178
+ - 15.0349045
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 179
+ - 15
m_Settings:
m_JsonData:
m_DataFromJson: 0
@@ -29928,8 +46310,6 @@ MonoBehaviour:
m_VisualMapTriangeLen: 20
m_PieTooltipExtraRadius: 8
m_PieSelectedOffset: 8
- m_Large: 1
- m_DebugInfo:
m_Grid:
m_JsonData:
m_DataFromJson: 0
@@ -29986,6 +46366,156 @@ MonoBehaviour:
- 12:00:28
- 12:00:29
- 12:00:30
+ - 12:00:31
+ - 12:00:32
+ - 12:00:33
+ - 12:00:34
+ - 12:00:35
+ - 12:00:36
+ - 12:00:37
+ - 12:00:38
+ - 12:00:39
+ - 12:00:40
+ - 12:00:41
+ - 12:00:42
+ - 12:00:43
+ - 12:00:44
+ - 12:00:45
+ - 12:00:46
+ - 12:00:47
+ - 12:00:48
+ - 12:00:49
+ - 12:00:50
+ - 12:00:51
+ - 12:00:52
+ - 12:00:53
+ - 12:00:54
+ - 12:00:55
+ - 12:00:56
+ - 12:00:57
+ - 12:00:58
+ - 12:00:59
+ - 12:01:00
+ - 12:01:01
+ - 12:01:02
+ - 12:01:03
+ - 12:01:04
+ - 12:01:05
+ - 12:01:06
+ - 12:01:07
+ - 12:01:08
+ - 12:01:09
+ - 12:01:10
+ - 12:01:11
+ - 12:01:12
+ - 12:01:13
+ - 12:01:14
+ - 12:01:15
+ - 12:01:16
+ - 12:01:17
+ - 12:01:18
+ - 12:01:19
+ - 12:01:20
+ - 12:01:21
+ - 12:01:22
+ - 12:01:23
+ - 12:01:24
+ - 12:01:25
+ - 12:01:26
+ - 12:01:27
+ - 12:01:28
+ - 12:01:29
+ - 12:01:30
+ - 12:01:31
+ - 12:01:32
+ - 12:01:33
+ - 12:01:34
+ - 12:01:35
+ - 12:01:36
+ - 12:01:37
+ - 12:01:38
+ - 12:01:39
+ - 12:01:40
+ - 12:01:41
+ - 12:01:42
+ - 12:01:43
+ - 12:01:44
+ - 12:01:45
+ - 12:01:46
+ - 12:01:47
+ - 12:01:48
+ - 12:01:49
+ - 12:01:50
+ - 12:01:51
+ - 12:01:52
+ - 12:01:53
+ - 12:01:54
+ - 12:01:55
+ - 12:01:56
+ - 12:01:57
+ - 12:01:58
+ - 12:01:59
+ - 12:02:00
+ - 12:02:01
+ - 12:02:02
+ - 12:02:03
+ - 12:02:04
+ - 12:02:05
+ - 12:02:06
+ - 12:02:07
+ - 12:02:08
+ - 12:02:09
+ - 12:02:10
+ - 12:02:11
+ - 12:02:12
+ - 12:02:13
+ - 12:02:14
+ - 12:02:15
+ - 12:02:16
+ - 12:02:17
+ - 12:02:18
+ - 12:02:19
+ - 12:02:20
+ - 12:02:21
+ - 12:02:22
+ - 12:02:23
+ - 12:02:24
+ - 12:02:25
+ - 12:02:26
+ - 12:02:27
+ - 12:02:28
+ - 12:02:29
+ - 12:02:30
+ - 12:02:31
+ - 12:02:32
+ - 12:02:33
+ - 12:02:34
+ - 12:02:35
+ - 12:02:36
+ - 12:02:37
+ - 12:02:38
+ - 12:02:39
+ - 12:02:40
+ - 12:02:41
+ - 12:02:42
+ - 12:02:43
+ - 12:02:44
+ - 12:02:45
+ - 12:02:46
+ - 12:02:47
+ - 12:02:48
+ - 12:02:49
+ - 12:02:50
+ - 12:02:51
+ - 12:02:52
+ - 12:02:53
+ - 12:02:54
+ - 12:02:55
+ - 12:02:56
+ - 12:02:57
+ - 12:02:58
+ - 12:02:59
+ - 12:03:00
m_AxisLine:
m_JsonData:
m_DataFromJson: 0
@@ -30392,366 +46922,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 680358238}
---- !u!1 &682966885
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 682966886}
- m_Layer: 0
- m_Name: label_0_77
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &682966886
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 682966885}
- 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: 2324443}
- - {fileID: 2066298919}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 77
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &684593993
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 684593994}
- - component: {fileID: 684593996}
- - component: {fileID: 684593995}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &684593994
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 684593993}
- 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: 221669390}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &684593995
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 684593993}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &684593996
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 684593993}
---- !u!1 &688995900
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 688995901}
- - component: {fileID: 688995903}
- - component: {fileID: 688995902}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &688995901
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 688995900}
- 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: 2008635767}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &688995902
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 688995900}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &688995903
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 688995900}
---- !u!1 &692382224
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 692382225}
- m_Layer: 0
- m_Name: label_0_79
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &692382225
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 692382224}
- 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: 1556433158}
- - {fileID: 645460154}
- m_Father: {fileID: 894361979}
- m_RootOrder: 79
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &694304536
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 694304537}
- - component: {fileID: 694304539}
- - component: {fileID: 694304538}
- 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 &694304537
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 694304536}
- 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: 1633117997}
- 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: 190}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &694304538
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 694304536}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &694304539
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 694304536}
---- !u!1 &695994816
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 695994817}
- - component: {fileID: 695994819}
- - component: {fileID: 695994818}
- 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 &695994817
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 695994816}
- 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: 1744434248}
- 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: 226.31375, y: -147}
- m_SizeDelta: {x: 452.6275, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &695994818
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 695994816}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &695994819
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 695994816}
--- !u!1 &698061306
GameObject:
m_ObjectHideFlags: 0
@@ -30826,2561 +46996,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 698061306}
---- !u!1 &699132067
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 699132068}
- - component: {fileID: 699132070}
- - component: {fileID: 699132069}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &699132068
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 699132067}
- 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: 1025956051}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &699132069
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 699132067}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &699132070
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 699132067}
---- !u!1 &699276534
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 699276535}
- - component: {fileID: 699276537}
- - component: {fileID: 699276536}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &699276535
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 699276534}
- 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: 1813691827}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &699276536
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 699276534}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &699276537
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 699276534}
---- !u!1 &702470132
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 702470133}
- - component: {fileID: 702470135}
- - component: {fileID: 702470134}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &702470133
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 702470132}
- 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: 218741664}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &702470134
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 702470132}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &702470135
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 702470132}
---- !u!1 &703526689
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 703526690}
- m_Layer: 0
- m_Name: label_0_30
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &703526690
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 703526689}
- 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: 1776292140}
- - {fileID: 1484953022}
- m_Father: {fileID: 894361979}
- m_RootOrder: 30
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &705288755
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 705288756}
- - component: {fileID: 705288758}
- - component: {fileID: 705288757}
- 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 &705288756
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 705288755}
- 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: 155904174}
- m_Father: {fileID: 522121942}
- 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: 400}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &705288757
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 705288755}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &705288758
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 705288755}
---- !u!1 &705325803
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 705325804}
- m_Layer: 0
- m_Name: label_0_21
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &705325804
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 705325803}
- 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: 2103523385}
- - {fileID: 1722430880}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 21
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &710673755
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 710673756}
- - component: {fileID: 710673758}
- - component: {fileID: 710673757}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &710673756
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 710673755}
- 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: 1149078504}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &710673757
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 710673755}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &710673758
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 710673755}
---- !u!1 &711551091
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 711551092}
- - component: {fileID: 711551094}
- - component: {fileID: 711551093}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &711551092
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 711551091}
- 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: 1721764753}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &711551093
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 711551091}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &711551094
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 711551091}
---- !u!1 &716622151
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 716622152}
- m_Layer: 0
- m_Name: label_0_38
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &716622152
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 716622151}
- 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: 1056115357}
- - {fileID: 1519953227}
- m_Father: {fileID: 879012035}
- m_RootOrder: 38
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &717382624
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 717382625}
- m_Layer: 0
- m_Name: label_0_50
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &717382625
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 717382624}
- 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: 639983413}
- - {fileID: 1555012671}
- m_Father: {fileID: 894361979}
- m_RootOrder: 50
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &719820348
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 719820349}
- m_Layer: 0
- m_Name: label_0_13
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &719820349
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 719820348}
- 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: 1756818233}
- - {fileID: 774573386}
- m_Father: {fileID: 894361979}
- m_RootOrder: 13
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &720089070
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 720089071}
- m_Layer: 0
- m_Name: label_0_51
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &720089071
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 720089070}
- 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: 103893828}
- - {fileID: 1928400952}
- m_Father: {fileID: 894361979}
- m_RootOrder: 51
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &722749991
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 722749992}
- - component: {fileID: 722749994}
- - component: {fileID: 722749993}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &722749992
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 722749991}
- 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: 410739357}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &722749993
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 722749991}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &722749994
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 722749991}
---- !u!1 &723151217
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 723151218}
- - component: {fileID: 723151220}
- - component: {fileID: 723151219}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &723151218
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 723151217}
- 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: 2077171403}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &723151219
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 723151217}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &723151220
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 723151217}
---- !u!1 &723212842
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 723212843}
- - component: {fileID: 723212845}
- - component: {fileID: 723212844}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &723212843
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 723212842}
- 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: 1389875423}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &723212844
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 723212842}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &723212845
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 723212842}
---- !u!1 &727393761
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 727393762}
- - component: {fileID: 727393764}
- - component: {fileID: 727393763}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &727393762
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 727393761}
- 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: 1759583629}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &727393763
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 727393761}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &727393764
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 727393761}
---- !u!1 &733547338
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 733547339}
- - component: {fileID: 733547341}
- - component: {fileID: 733547340}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &733547339
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 733547338}
- 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: 1926027242}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &733547340
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 733547338}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &733547341
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 733547338}
---- !u!1 &733658458
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 733658459}
- - component: {fileID: 733658461}
- - component: {fileID: 733658460}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &733658459
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 733658458}
- 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: 1286901907}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &733658460
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 733658458}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &733658461
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 733658458}
---- !u!1 &736007242
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 736007243}
- m_Layer: 0
- m_Name: label_0_8
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &736007243
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 736007242}
- 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: 175662003}
- - {fileID: 118518220}
- m_Father: {fileID: 879012035}
- m_RootOrder: 8
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &736390035
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 736390036}
- - component: {fileID: 736390038}
- - component: {fileID: 736390037}
- m_Layer: 0
- m_Name: axis_x24
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &736390036
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 736390035}
- 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: 399349871}
- 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: 1780, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &736390037
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 736390035}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &736390038
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 736390035}
---- !u!1 &737924632
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 737924633}
- - component: {fileID: 737924635}
- - component: {fileID: 737924634}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &737924633
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 737924632}
- 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: 1582586612}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &737924634
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 737924632}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &737924635
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 737924632}
---- !u!1 &742032093
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 742032094}
- - component: {fileID: 742032096}
- - component: {fileID: 742032095}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &742032094
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 742032093}
- 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: 1130777856}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &742032095
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 742032093}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &742032096
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 742032093}
---- !u!1 &742096619
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 742096620}
- - component: {fileID: 742096622}
- - component: {fileID: 742096621}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &742096620
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 742096619}
- 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: 42712329}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &742096621
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 742096619}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &742096622
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 742096619}
---- !u!1 &742546965
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 742546966}
- - component: {fileID: 742546968}
- - component: {fileID: 742546967}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &742546966
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 742546965}
- 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: 1270706517}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &742546967
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 742546965}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &742546968
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 742546965}
---- !u!1 &743337401
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 743337402}
- - component: {fileID: 743337404}
- - component: {fileID: 743337403}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &743337402
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 743337401}
- 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: 428744862}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &743337403
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 743337401}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &743337404
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 743337401}
---- !u!1 &743461881
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 743461882}
- - component: {fileID: 743461884}
- - component: {fileID: 743461883}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &743461882
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 743461881}
- 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: 216606161}
- 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 &743461883
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 743461881}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &743461884
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 743461881}
---- !u!1 &745753774
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 745753775}
- - component: {fileID: 745753777}
- - component: {fileID: 745753776}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &745753775
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 745753774}
- 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: 647336199}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &745753776
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 745753774}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &745753777
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 745753774}
---- !u!1 &749966941
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 749966942}
- - component: {fileID: 749966944}
- - component: {fileID: 749966943}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &749966942
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 749966941}
- 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: 1798970096}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &749966943
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 749966941}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &749966944
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 749966941}
---- !u!1 &750523074
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 750523075}
- - component: {fileID: 750523077}
- - component: {fileID: 750523076}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &750523075
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 750523074}
- 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: 1750545933}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &750523076
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 750523074}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &750523077
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 750523074}
---- !u!1 &751047237
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 751047238}
- m_Layer: 0
- m_Name: label_0_87
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &751047238
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 751047237}
- 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: 1117859315}
- - {fileID: 82970813}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 87
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &751093332
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 751093333}
- - component: {fileID: 751093335}
- - component: {fileID: 751093334}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &751093333
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 751093332}
- 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: 1564080919}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &751093334
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 751093332}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &751093335
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 751093332}
---- !u!1 &754238366
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 754238367}
- - component: {fileID: 754238369}
- - component: {fileID: 754238368}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &754238367
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 754238366}
- 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: 1640161967}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &754238368
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 754238366}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &754238369
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 754238366}
---- !u!1 &756114644
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 756114645}
- m_Layer: 0
- m_Name: label_0_7
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &756114645
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 756114644}
- 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: 350782576}
- - {fileID: 1272151812}
- m_Father: {fileID: 894361979}
- m_RootOrder: 7
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &762986489
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 762986490}
- m_Layer: 0
- m_Name: label_0_61
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &762986490
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 762986489}
- 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: 867555812}
- - {fileID: 1661579451}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 61
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &763166748
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 763166749}
- - component: {fileID: 763166751}
- - component: {fileID: 763166750}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &763166749
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 763166748}
- 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: 92608281}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &763166750
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 763166748}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &763166751
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 763166748}
---- !u!1 &765350348
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 765350349}
- m_Layer: 0
- m_Name: label_0_83
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &765350349
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 765350348}
- 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: 1476888616}
- - {fileID: 1115694409}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 83
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &771014155
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 771014156}
- m_Layer: 0
- m_Name: legend
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &771014156
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 771014155}
- 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: 1304222265}
- 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: -30}
- m_SizeDelta: {x: 1810.51, y: 140}
- m_Pivot: {x: 0.5, y: 1}
---- !u!1 &774573385
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 774573386}
- - component: {fileID: 774573388}
- - component: {fileID: 774573387}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &774573386
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 774573385}
- 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: 719820349}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &774573387
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 774573385}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &774573388
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 774573385}
---- !u!1 &774951555
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 774951556}
- - component: {fileID: 774951558}
- - component: {fileID: 774951557}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &774951556
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 774951555}
- 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: 198420910}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &774951557
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 774951555}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &774951558
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 774951555}
---- !u!1 &785300427
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 785300428}
- - component: {fileID: 785300430}
- - component: {fileID: 785300429}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &785300428
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 785300427}
- 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: 1013676475}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &785300429
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 785300427}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &785300430
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 785300427}
---- !u!1 &790605075
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 790605076}
- - component: {fileID: 790605078}
- - component: {fileID: 790605077}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &790605076
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 790605075}
- 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: 1353610635}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &790605077
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 790605075}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &790605078
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 790605075}
---- !u!1 &790916335
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 790916336}
- - component: {fileID: 790916338}
- - component: {fileID: 790916337}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &790916336
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 790916335}
- 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: 2016230778}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &790916337
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 790916335}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &790916338
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 790916335}
--- !u!1 &791661405
GameObject:
m_ObjectHideFlags: 0
@@ -33416,337 +47031,6 @@ RectTransform:
m_AnchoredPosition: {x: 343.6, y: 0.000044822693}
m_SizeDelta: {x: 100, y: 100}
m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &792327025
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 792327026}
- - component: {fileID: 792327028}
- - component: {fileID: 792327027}
- m_Layer: 0
- m_Name: datazoomstart
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &792327026
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 792327025}
- 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: 1715653984}
- 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: 140}
- m_SizeDelta: {x: 200, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &792327027
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 792327025}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &792327028
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 792327025}
---- !u!1 &795316463
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 795316464}
- m_Layer: 0
- m_Name: label_0_96
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &795316464
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 795316463}
- 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: 1755427949}
- - {fileID: 840436832}
- m_Father: {fileID: 894361979}
- m_RootOrder: 96
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &796364468
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 796364469}
- - component: {fileID: 796364471}
- - component: {fileID: 796364470}
- m_Layer: 0
- m_Name: axis_x20
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &796364469
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 796364468}
- 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: 399349871}
- 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: 396, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &796364470
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 796364468}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &796364471
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 796364468}
---- !u!1 &799520525
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 799520526}
- - component: {fileID: 799520528}
- - component: {fileID: 799520527}
- 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 &799520526
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 799520525}
- 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: 554873560}
- 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: 190}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &799520527
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 799520525}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &799520528
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 799520525}
---- !u!1 &799740028
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 799740029}
- - component: {fileID: 799740031}
- - component: {fileID: 799740030}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &799740029
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 799740028}
- 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: 433194775}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &799740030
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 799740028}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &799740031
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 799740028}
--- !u!1 &800647789
GameObject:
m_ObjectHideFlags: 0
@@ -33821,1468 +47105,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 800647789}
---- !u!1 &801356320
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 801356321}
- - component: {fileID: 801356323}
- - component: {fileID: 801356322}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &801356321
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 801356320}
- 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: 1774949521}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &801356322
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 801356320}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &801356323
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 801356320}
---- !u!1 &802121641
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 802121642}
- - component: {fileID: 802121644}
- - component: {fileID: 802121643}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &802121642
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 802121641}
- 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: 857837528}
- 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 &802121643
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 802121641}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &802121644
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 802121641}
---- !u!1 &812056908
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 812056909}
- - component: {fileID: 812056911}
- - component: {fileID: 812056910}
- m_Layer: 0
- m_Name: axis_x21
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &812056909
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 812056908}
- 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: 1400674265}
- 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: 742, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &812056910
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 812056908}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &812056911
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 812056908}
---- !u!1 &814075980
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 814075981}
- - component: {fileID: 814075983}
- - component: {fileID: 814075982}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &814075981
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 814075980}
- 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: 1665535851}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &814075982
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 814075980}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &814075983
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 814075980}
---- !u!1 &820132498
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 820132499}
- - component: {fileID: 820132501}
- - component: {fileID: 820132500}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &820132499
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 820132498}
- 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: 1418845304}
- 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 &820132500
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 820132498}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &820132501
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 820132498}
---- !u!1 &822116522
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 822116523}
- - component: {fileID: 822116525}
- - component: {fileID: 822116524}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &822116523
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 822116522}
- 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: 1199274735}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &822116524
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 822116522}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &822116525
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 822116522}
---- !u!1 &824810212
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 824810213}
- - component: {fileID: 824810215}
- - component: {fileID: 824810214}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &824810213
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 824810212}
- 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: 517073283}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &824810214
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 824810212}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &824810215
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 824810212}
---- !u!1 &826726903
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 826726904}
- - component: {fileID: 826726906}
- - component: {fileID: 826726905}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &826726904
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 826726903}
- 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: 1794847668}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &826726905
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 826726903}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &826726906
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 826726903}
---- !u!1 &827305500
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 827305501}
- m_Layer: 0
- m_Name: label_0_43
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &827305501
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 827305500}
- 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: 1572070800}
- - {fileID: 670167337}
- m_Father: {fileID: 894361979}
- m_RootOrder: 43
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &827521284
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 827521285}
- - component: {fileID: 827521287}
- - component: {fileID: 827521286}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &827521285
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 827521284}
- 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: 942770258}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &827521286
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 827521284}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &827521287
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 827521284}
---- !u!1 &828432354
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 828432355}
- m_Layer: 0
- m_Name: serie
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &828432355
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 828432354}
- 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: 1903797145}
- m_Father: {fileID: 237605830}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &831969782
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 831969783}
- m_Layer: 0
- m_Name: label_0_31
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &831969783
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 831969782}
- 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: 1428336004}
- - {fileID: 498437339}
- m_Father: {fileID: 894361979}
- m_RootOrder: 31
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &832521295
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 832521296}
- - component: {fileID: 832521298}
- - component: {fileID: 832521297}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &832521296
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 832521295}
- 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: 923753142}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &832521297
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 832521295}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &832521298
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 832521295}
---- !u!1 &835952280
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 835952281}
- - component: {fileID: 835952283}
- - component: {fileID: 835952282}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &835952281
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 835952280}
- 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: 2067959695}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &835952282
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 835952280}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &835952283
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 835952280}
---- !u!1 &836057683
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 836057684}
- - component: {fileID: 836057686}
- - component: {fileID: 836057685}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &836057684
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 836057683}
- 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: 2059699167}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &836057685
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 836057683}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &836057686
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 836057683}
---- !u!1 &836176529
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 836176530}
- - component: {fileID: 836176532}
- - component: {fileID: 836176531}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &836176530
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 836176529}
- 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: 1096048472}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &836176531
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 836176529}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &836176532
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 836176529}
---- !u!1 &840436831
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 840436832}
- - component: {fileID: 840436834}
- - component: {fileID: 840436833}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &840436832
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 840436831}
- 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: 795316464}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &840436833
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 840436831}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &840436834
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 840436831}
---- !u!1 &844464112
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 844464113}
- - component: {fileID: 844464115}
- - component: {fileID: 844464114}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &844464113
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 844464112}
- 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: 46999329}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &844464114
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 844464112}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &844464115
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 844464112}
---- !u!1 &845243488
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 845243489}
- - component: {fileID: 845243491}
- - component: {fileID: 845243490}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &845243489
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 845243488}
- 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: 286486331}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &845243490
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 845243488}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &845243491
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 845243488}
---- !u!1 &846651511
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 846651512}
- - component: {fileID: 846651514}
- - component: {fileID: 846651513}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &846651512
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 846651511}
- 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: 1254973738}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &846651513
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 846651511}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &846651514
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 846651511}
---- !u!1 &848791622
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 848791623}
- - component: {fileID: 848791625}
- - component: {fileID: 848791624}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &848791623
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 848791622}
- 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: 1286901907}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &848791624
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 848791622}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &848791625
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 848791622}
---- !u!1 &852054003
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 852054004}
- - component: {fileID: 852054006}
- - component: {fileID: 852054005}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &852054004
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 852054003}
- 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: 951035924}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &852054005
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 852054003}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &852054006
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 852054003}
--- !u!1 &852923139
GameObject:
m_ObjectHideFlags: 0
@@ -35318,326 +47140,6 @@ RectTransform:
m_AnchoredPosition: {x: 0.00003194809, y: -43.6}
m_SizeDelta: {x: 100, y: 100}
m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &857695783
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 857695784}
- - component: {fileID: 857695786}
- - component: {fileID: 857695785}
- m_Layer: 0
- m_Name: axis_x24
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &857695784
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 857695783}
- 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: 1400674265}
- 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: 1780, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &857695785
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 857695783}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &857695786
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 857695783}
---- !u!1 &857837527
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 857837528}
- - component: {fileID: 857837530}
- - component: {fileID: 857837529}
- m_Layer: 0
- m_Name: axis_x2_label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &857837528
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 857837527}
- 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: 802121642}
- m_Father: {fileID: 522121942}
- 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: 400}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &857837529
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 857837527}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &857837530
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 857837527}
---- !u!1 &859999234
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 859999235}
- m_Layer: 0
- m_Name: label_0_39
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &859999235
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 859999234}
- 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: 1811599467}
- - {fileID: 491613633}
- m_Father: {fileID: 894361979}
- m_RootOrder: 39
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &861116684
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 861116685}
- - component: {fileID: 861116687}
- - component: {fileID: 861116686}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &861116685
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 861116684}
- 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: 1467881649}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &861116686
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 861116684}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &861116687
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 861116684}
---- !u!1 &861185910
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 861185911}
- - component: {fileID: 861185913}
- - component: {fileID: 861185912}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &861185911
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 861185910}
- 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: 1096048472}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &861185912
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 861185910}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &861185913
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 861185910}
--- !u!1 &864410077
GameObject:
m_ObjectHideFlags: 0
@@ -35705,12420 +47207,13 @@ MonoBehaviour:
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
- m_Text: FPS:4.0
+ m_Text: FPS:5.0
--- !u!222 &864410080
CanvasRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 864410077}
---- !u!1 &867555811
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 867555812}
- - component: {fileID: 867555814}
- - component: {fileID: 867555813}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &867555812
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 867555811}
- 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: 762986490}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &867555813
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 867555811}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &867555814
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 867555811}
---- !u!1 &868383418
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 868383419}
- - component: {fileID: 868383421}
- - component: {fileID: 868383420}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &868383419
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 868383418}
- 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: 312564751}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &868383420
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 868383418}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &868383421
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 868383418}
---- !u!1 &870931724
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 870931725}
- - component: {fileID: 870931727}
- - component: {fileID: 870931726}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &870931725
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 870931724}
- 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: 650023525}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &870931726
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 870931724}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &870931727
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 870931724}
---- !u!1 &871923284
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 871923285}
- - component: {fileID: 871923287}
- - component: {fileID: 871923286}
- m_Layer: 0
- m_Name: axis_x9
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &871923285
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 871923284}
- 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: 607005197}
- 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: 1780, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &871923286
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 871923284}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:10
---- !u!222 &871923287
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 871923284}
---- !u!1 &878648157
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 878648158}
- - component: {fileID: 878648160}
- - component: {fileID: 878648159}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &878648158
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 878648157}
- 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: 1813691827}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &878648159
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 878648157}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &878648160
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 878648157}
---- !u!1 &879012034
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 879012035}
- m_Layer: 0
- m_Name: label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &879012035
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 879012034}
- 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: 485125442}
- - {fileID: 10813551}
- - {fileID: 1825428796}
- - {fileID: 977936300}
- - {fileID: 551855691}
- - {fileID: 92608281}
- - {fileID: 1866009723}
- - {fileID: 1640161967}
- - {fileID: 736007243}
- - {fileID: 953675585}
- - {fileID: 611541361}
- - {fileID: 2017736213}
- - {fileID: 86579206}
- - {fileID: 1846086162}
- - {fileID: 2051287526}
- - {fileID: 1216474455}
- - {fileID: 1078980475}
- - {fileID: 1982537061}
- - {fileID: 2077171403}
- - {fileID: 1499237570}
- - {fileID: 1612862146}
- - {fileID: 1367553485}
- - {fileID: 434559239}
- - {fileID: 38184951}
- - {fileID: 128552215}
- - {fileID: 312564751}
- - {fileID: 350116618}
- - {fileID: 1467881649}
- - {fileID: 1723485876}
- - {fileID: 1779414254}
- - {fileID: 1379246024}
- - {fileID: 1774949521}
- - {fileID: 1470695275}
- - {fileID: 1096048472}
- - {fileID: 904367111}
- - {fileID: 1064777813}
- - {fileID: 298128255}
- - {fileID: 2013350463}
- - {fileID: 716622152}
- - {fileID: 386895853}
- - {fileID: 923753142}
- - {fileID: 1501762530}
- - {fileID: 1537830619}
- - {fileID: 675546638}
- - {fileID: 1697835705}
- - {fileID: 1270706517}
- - {fileID: 922097054}
- - {fileID: 254774805}
- - {fileID: 1832696004}
- - {fileID: 2130517366}
- - {fileID: 205112339}
- - {fileID: 286486331}
- - {fileID: 25195271}
- - {fileID: 2019239775}
- - {fileID: 906661467}
- - {fileID: 1608253157}
- - {fileID: 1277720618}
- - {fileID: 1893974734}
- - {fileID: 414556830}
- - {fileID: 428744862}
- - {fileID: 1664425325}
- - {fileID: 352592301}
- - {fileID: 1665516830}
- - {fileID: 1738171052}
- - {fileID: 610721074}
- - {fileID: 1794847668}
- - {fileID: 1698923728}
- - {fileID: 1481740289}
- - {fileID: 2037297520}
- - {fileID: 221669390}
- - {fileID: 1265568032}
- - {fileID: 1681206412}
- - {fileID: 663222809}
- - {fileID: 1565637805}
- - {fileID: 110735113}
- - {fileID: 1656275548}
- - {fileID: 175999139}
- - {fileID: 1203322206}
- - {fileID: 963765539}
- - {fileID: 478957980}
- - {fileID: 1254973738}
- - {fileID: 1225838654}
- - {fileID: 20923469}
- - {fileID: 670718773}
- - {fileID: 2138665633}
- - {fileID: 268732617}
- - {fileID: 218741664}
- - {fileID: 1123046081}
- - {fileID: 1225021475}
- m_Father: {fileID: 1304222265}
- 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: 1810.51, y: 140}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &881035881
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 881035882}
- - component: {fileID: 881035884}
- - component: {fileID: 881035883}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &881035882
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 881035881}
- 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: 1866009723}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &881035883
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 881035881}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &881035884
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 881035881}
---- !u!1 &883498554
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 883498555}
- m_Layer: 0
- m_Name: label_0_88
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &883498555
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 883498554}
- 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: 1096608062}
- - {fileID: 217516718}
- m_Father: {fileID: 894361979}
- m_RootOrder: 88
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &883847641
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 883847642}
- - component: {fileID: 883847644}
- - component: {fileID: 883847643}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &883847642
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 883847641}
- 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: 1075166136}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &883847643
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 883847641}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &883847644
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 883847641}
---- !u!1 &887378991
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 887378992}
- - component: {fileID: 887378994}
- - component: {fileID: 887378993}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &887378992
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 887378991}
- 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: 1774949521}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &887378993
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 887378991}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &887378994
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 887378991}
---- !u!1 &889367319
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 889367320}
- - component: {fileID: 889367322}
- - component: {fileID: 889367321}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &889367320
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 889367319}
- 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: 1923964892}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &889367321
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 889367319}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &889367322
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 889367319}
---- !u!1 &890477517
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 890477518}
- - component: {fileID: 890477520}
- - component: {fileID: 890477519}
- m_Layer: 0
- m_Name: axis_y21
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &890477518
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 890477517}
- 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: 1527990582}
- 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: 1818.51, y: 40}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &890477519
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 890477517}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &890477520
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 890477517}
---- !u!1 &891500380
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 891500381}
- m_Layer: 0
- m_Name: label_0_95
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &891500381
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 891500380}
- 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: 1346698221}
- - {fileID: 583823647}
- m_Father: {fileID: 894361979}
- m_RootOrder: 95
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &893576382
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 893576383}
- - component: {fileID: 893576385}
- - component: {fileID: 893576384}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &893576383
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 893576382}
- 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: 205112339}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &893576384
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 893576382}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &893576385
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 893576382}
---- !u!1 &894361978
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 894361979}
- m_Layer: 0
- m_Name: label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &894361979
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 894361978}
- 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: 1493559516}
- - {fileID: 411993381}
- - {fileID: 987458730}
- - {fileID: 979805674}
- - {fileID: 2129149243}
- - {fileID: 1981146383}
- - {fileID: 1514968862}
- - {fileID: 756114645}
- - {fileID: 1378139615}
- - {fileID: 1671388736}
- - {fileID: 1923964892}
- - {fileID: 573375650}
- - {fileID: 2061986587}
- - {fileID: 719820349}
- - {fileID: 360550508}
- - {fileID: 1798970096}
- - {fileID: 92198298}
- - {fileID: 940568876}
- - {fileID: 1286901907}
- - {fileID: 550798287}
- - {fileID: 254000717}
- - {fileID: 1759583629}
- - {fileID: 1030269447}
- - {fileID: 426539878}
- - {fileID: 1827057369}
- - {fileID: 1665535851}
- - {fileID: 423381752}
- - {fileID: 1589619011}
- - {fileID: 64469354}
- - {fileID: 198420910}
- - {fileID: 703526690}
- - {fileID: 831969783}
- - {fileID: 1397180239}
- - {fileID: 1292924290}
- - {fileID: 1478283434}
- - {fileID: 609515172}
- - {fileID: 973109456}
- - {fileID: 17612909}
- - {fileID: 2059699167}
- - {fileID: 859999235}
- - {fileID: 1824376093}
- - {fileID: 1130777856}
- - {fileID: 569155130}
- - {fileID: 827305501}
- - {fileID: 1408578610}
- - {fileID: 51310537}
- - {fileID: 247847427}
- - {fileID: 139664243}
- - {fileID: 428550738}
- - {fileID: 1897867278}
- - {fileID: 717382625}
- - {fileID: 720089071}
- - {fileID: 1624427530}
- - {fileID: 1820314054}
- - {fileID: 1701119397}
- - {fileID: 1904395403}
- - {fileID: 614107540}
- - {fileID: 1141381736}
- - {fileID: 225774076}
- - {fileID: 170996848}
- - {fileID: 1149078504}
- - {fileID: 951035924}
- - {fileID: 1564080919}
- - {fileID: 178036851}
- - {fileID: 154528125}
- - {fileID: 1922343103}
- - {fileID: 1582586612}
- - {fileID: 1750545933}
- - {fileID: 410739357}
- - {fileID: 942770258}
- - {fileID: 942777252}
- - {fileID: 433194775}
- - {fileID: 561594144}
- - {fileID: 665141036}
- - {fileID: 1950796009}
- - {fileID: 2145200427}
- - {fileID: 1542518337}
- - {fileID: 1309058429}
- - {fileID: 1199274735}
- - {fileID: 692382225}
- - {fileID: 292358546}
- - {fileID: 1458321885}
- - {fileID: 79083272}
- - {fileID: 395864209}
- - {fileID: 1922601331}
- - {fileID: 564418865}
- - {fileID: 1114847434}
- - {fileID: 1013676475}
- - {fileID: 883498555}
- - {fileID: 1586011819}
- - {fileID: 650023525}
- - {fileID: 71017291}
- - {fileID: 1773915099}
- - {fileID: 1399642849}
- - {fileID: 280618040}
- - {fileID: 891500381}
- - {fileID: 795316464}
- - {fileID: 678738528}
- - {fileID: 2124189020}
- - {fileID: 1095146674}
- - {fileID: 1862841351}
- m_Father: {fileID: 237605830}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &895541289
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 895541290}
- - component: {fileID: 895541292}
- - component: {fileID: 895541291}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &895541290
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 895541289}
- 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: 611541361}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &895541291
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 895541289}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &895541292
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 895541289}
---- !u!1 &898278812
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 898278813}
- - component: {fileID: 898278815}
- - component: {fileID: 898278814}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &898278813
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 898278812}
- 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: 1062304335}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &898278814
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 898278812}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &898278815
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 898278812}
---- !u!1 &899235304
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 899235305}
- - component: {fileID: 899235307}
- - component: {fileID: 899235306}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &899235305
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 899235304}
- 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: 1975725658}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &899235306
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 899235304}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &899235307
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 899235304}
---- !u!1 &899538934
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 899538935}
- - component: {fileID: 899538937}
- - component: {fileID: 899538936}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &899538935
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 899538934}
- 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: 411993381}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &899538936
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 899538934}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &899538937
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 899538934}
---- !u!1 &901098995
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 901098996}
- m_Layer: 0
- m_Name: label_0_54
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &901098996
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 901098995}
- 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: 1737552680}
- - {fileID: 1473540666}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 54
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &901352050
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 901352051}
- - component: {fileID: 901352053}
- - component: {fileID: 901352052}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &901352051
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 901352050}
- 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: 317897654}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &901352052
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 901352050}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &901352053
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 901352050}
---- !u!1 &902031364
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 902031365}
- - component: {fileID: 902031367}
- - component: {fileID: 902031366}
- m_Layer: 0
- m_Name: axis_y6
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &902031365
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 902031364}
- 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: 247028392}
- m_RootOrder: 6
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 42.17, y: 109.64287}
- m_SizeDelta: {x: 50.17, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &902031366
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 902031364}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 17.14286
---- !u!222 &902031367
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 902031364}
---- !u!1 &903421236
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 903421237}
- - component: {fileID: 903421239}
- - component: {fileID: 903421238}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &903421237
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 903421236}
- 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: 86579206}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &903421238
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 903421236}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &903421239
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 903421236}
---- !u!1 &904367110
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 904367111}
- m_Layer: 0
- m_Name: label_0_34
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &904367111
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 904367110}
- 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: 1526026445}
- - {fileID: 110137896}
- m_Father: {fileID: 879012035}
- m_RootOrder: 34
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &905482299
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 905482300}
- m_Layer: 0
- m_Name: label_0_30
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &905482300
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 905482299}
- 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: 1450717926}
- - {fileID: 168112360}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 30
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &906661466
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 906661467}
- m_Layer: 0
- m_Name: label_0_54
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &906661467
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 906661466}
- 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: 1807979965}
- - {fileID: 1354578951}
- m_Father: {fileID: 879012035}
- m_RootOrder: 54
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &908491425
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 908491426}
- - component: {fileID: 908491428}
- - component: {fileID: 908491427}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &908491426
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 908491425}
- 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: 2019239775}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &908491427
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 908491425}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &908491428
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 908491425}
---- !u!1 &909088520
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 909088521}
- m_Layer: 0
- m_Name: label_0_18
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &909088521
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 909088520}
- 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: 1063114077}
- - {fileID: 115218747}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 18
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &911188240
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 911188241}
- - component: {fileID: 911188243}
- - component: {fileID: 911188242}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &911188241
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 911188240}
- 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: 1216698402}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &911188242
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 911188240}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &911188243
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 911188240}
---- !u!1 &911241395
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 911241396}
- m_Layer: 0
- m_Name: label_0_68
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &911241396
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 911241395}
- 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: 1597450713}
- - {fileID: 2064661655}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 68
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &915125759
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 915125760}
- - component: {fileID: 915125762}
- - component: {fileID: 915125761}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &915125760
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 915125759}
- 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: 1431086154}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &915125761
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 915125759}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &915125762
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 915125759}
---- !u!1 &917458069
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 917458070}
- m_Layer: 0
- m_Name: label_0_22
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &917458070
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 917458069}
- 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: 1404076431}
- - {fileID: 1360611620}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 22
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &921822294
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 921822295}
- - component: {fileID: 921822297}
- - component: {fileID: 921822296}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &921822295
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 921822294}
- 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: 1592038752}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &921822296
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 921822294}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &921822297
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 921822294}
---- !u!1 &922097053
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 922097054}
- m_Layer: 0
- m_Name: label_0_46
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &922097054
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 922097053}
- 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: 483359468}
- - {fileID: 131978643}
- m_Father: {fileID: 879012035}
- m_RootOrder: 46
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &923753141
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 923753142}
- m_Layer: 0
- m_Name: label_0_40
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &923753142
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 923753141}
- 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: 832521296}
- - {fileID: 1229748662}
- m_Father: {fileID: 879012035}
- m_RootOrder: 40
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &924691598
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 924691599}
- - component: {fileID: 924691601}
- - component: {fileID: 924691600}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &924691599
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 924691598}
- 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: 1537830619}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &924691600
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 924691598}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &924691601
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 924691598}
---- !u!1 &927197953
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 927197954}
- m_Layer: 0
- m_Name: label_0_57
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &927197954
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 927197953}
- 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: 1148818415}
- - {fileID: 267777058}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 57
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &929963290
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 929963291}
- - component: {fileID: 929963293}
- - component: {fileID: 929963292}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &929963291
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 929963290}
- 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: 1203322206}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &929963292
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 929963290}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &929963293
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 929963290}
---- !u!1 &930288100
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 930288101}
- - component: {fileID: 930288103}
- - component: {fileID: 930288102}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &930288101
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 930288100}
- 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: 435721527}
- 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 &930288102
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 930288100}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &930288103
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 930288100}
---- !u!1 &932481336
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 932481337}
- - component: {fileID: 932481339}
- - component: {fileID: 932481338}
- m_Layer: 0
- m_Name: axis_y20
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &932481337
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 932481336}
- 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: 366324264}
- 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: 1788, y: 30}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &932481338
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 932481336}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &932481339
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 932481336}
---- !u!1 &937010597
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 937010598}
- - component: {fileID: 937010600}
- - component: {fileID: 937010599}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &937010598
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 937010597}
- 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: 1950796009}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &937010599
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 937010597}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &937010600
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 937010597}
---- !u!1 &937050841
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 937050842}
- m_Layer: 0
- m_Name: label_0_17
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &937050842
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 937050841}
- 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: 1719438464}
- - {fileID: 270356624}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 17
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &940568875
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 940568876}
- m_Layer: 0
- m_Name: label_0_17
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &940568876
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 940568875}
- 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: 1176622297}
- - {fileID: 1224384570}
- m_Father: {fileID: 894361979}
- m_RootOrder: 17
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &942770257
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 942770258}
- m_Layer: 0
- m_Name: label_0_69
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &942770258
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 942770257}
- 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: 450175289}
- - {fileID: 827521285}
- m_Father: {fileID: 894361979}
- m_RootOrder: 69
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &942777251
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 942777252}
- m_Layer: 0
- m_Name: label_0_70
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &942777252
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 942777251}
- 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: 107254880}
- - {fileID: 1899709173}
- m_Father: {fileID: 894361979}
- m_RootOrder: 70
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &945282017
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 945282018}
- - component: {fileID: 945282020}
- - component: {fileID: 945282019}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &945282018
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 945282017}
- 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: 247847427}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &945282019
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 945282017}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &945282020
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 945282017}
---- !u!1 &945829681
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 945829682}
- - component: {fileID: 945829684}
- - component: {fileID: 945829683}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &945829682
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 945829681}
- 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: 2067959695}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &945829683
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 945829681}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &945829684
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 945829681}
---- !u!1 &946820387
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 946820388}
- - component: {fileID: 946820390}
- - component: {fileID: 946820389}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &946820388
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 946820387}
- 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: 1671388736}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &946820389
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 946820387}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &946820390
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 946820387}
---- !u!1 &948643651
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 948643652}
- - component: {fileID: 948643654}
- - component: {fileID: 948643653}
- m_Layer: 0
- m_Name: axis_y23
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &948643652
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 948643651}
- 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: 1527990582}
- 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: 1818.51, y: 100}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &948643653
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 948643651}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &948643654
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 948643651}
---- !u!1 &951035923
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 951035924}
- m_Layer: 0
- m_Name: label_0_61
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &951035924
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 951035923}
- 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: 951437721}
- - {fileID: 852054004}
- m_Father: {fileID: 894361979}
- m_RootOrder: 61
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &951320940
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 951320941}
- m_Layer: 0
- m_Name: label_0_84
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &951320941
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 951320940}
- 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: 22971974}
- - {fileID: 1444511880}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 84
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &951437720
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 951437721}
- - component: {fileID: 951437723}
- - component: {fileID: 951437722}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &951437721
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 951437720}
- 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: 951035924}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &951437722
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 951437720}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &951437723
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 951437720}
---- !u!1 &953675584
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 953675585}
- m_Layer: 0
- m_Name: label_0_9
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &953675585
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 953675584}
- 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: 1326301511}
- - {fileID: 2111702909}
- m_Father: {fileID: 879012035}
- m_RootOrder: 9
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &954046815
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 954046816}
- m_Layer: 0
- m_Name: legend
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &954046816
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 954046815}
- 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: 680358239}
- 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: -30}
- m_SizeDelta: {x: 1810, y: 400}
- m_Pivot: {x: 0.5, y: 1}
---- !u!1 &955986984
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 955986985}
- - component: {fileID: 955986987}
- - component: {fileID: 955986986}
- m_Layer: 0
- m_Name: datazoomend
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &955986985
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 955986984}
- 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: 259383532}
- 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: 400}
- m_SizeDelta: {x: 200, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &955986986
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 955986984}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &955986987
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 955986984}
---- !u!1 &960757971
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 960757972}
- - component: {fileID: 960757974}
- - component: {fileID: 960757973}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &960757972
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 960757971}
- 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: 1738171052}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &960757973
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 960757971}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &960757974
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 960757971}
---- !u!1 &963765538
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 963765539}
- m_Layer: 0
- m_Name: label_0_78
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &963765539
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 963765538}
- 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: 644532668}
- - {fileID: 1038724875}
- m_Father: {fileID: 879012035}
- m_RootOrder: 78
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &969933316
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 969933317}
- - component: {fileID: 969933319}
- - component: {fileID: 969933318}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &969933317
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 969933316}
- 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: 1378139615}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &969933318
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 969933316}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &969933319
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 969933316}
---- !u!1 &970933458
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 970933459}
- - component: {fileID: 970933461}
- - component: {fileID: 970933460}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &970933459
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 970933458}
- 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: 1030269447}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &970933460
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 970933458}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &970933461
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 970933458}
---- !u!1 &971033758
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 971033759}
- m_Layer: 0
- m_Name: label_0_51
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &971033759
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 971033758}
- 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: 1855933843}
- - {fileID: 117270370}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 51
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &973109455
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 973109456}
- m_Layer: 0
- m_Name: label_0_36
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &973109456
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 973109455}
- 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: 193839612}
- - {fileID: 1602779617}
- m_Father: {fileID: 894361979}
- m_RootOrder: 36
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &977936299
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 977936300}
- m_Layer: 0
- m_Name: label_0_3
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &977936300
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 977936299}
- 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: 1449980592}
- - {fileID: 173872240}
- m_Father: {fileID: 879012035}
- m_RootOrder: 3
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &979805673
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 979805674}
- m_Layer: 0
- m_Name: label_0_3
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &979805674
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 979805673}
- 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: 1895865686}
- - {fileID: 1237344971}
- m_Father: {fileID: 894361979}
- m_RootOrder: 3
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &981360536
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 981360537}
- - component: {fileID: 981360539}
- - component: {fileID: 981360538}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &981360537
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 981360536}
- 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: 2077171403}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &981360538
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 981360536}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &981360539
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 981360536}
---- !u!1 &985643750
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 985643751}
- - component: {fileID: 985643753}
- - component: {fileID: 985643752}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &985643751
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 985643750}
- 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: 573375650}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &985643752
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 985643750}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &985643753
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 985643750}
---- !u!1 &985907217
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 985907218}
- - component: {fileID: 985907220}
- - component: {fileID: 985907219}
- m_Layer: 0
- m_Name: axis_y20
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &985907218
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 985907217}
- 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: 1527990582}
- 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: 1818.51, y: 10}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &985907219
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 985907217}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &985907220
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 985907217}
---- !u!1 &987273185
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 987273186}
- - component: {fileID: 987273188}
- - component: {fileID: 987273187}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &987273186
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 987273185}
- 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: 1477220903}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &987273187
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 987273185}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &987273188
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 987273185}
---- !u!1 &987458729
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 987458730}
- m_Layer: 0
- m_Name: label_0_2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &987458730
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 987458729}
- 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: 1329900066}
- - {fileID: 89673331}
- m_Father: {fileID: 894361979}
- m_RootOrder: 2
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &988415275
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 988415276}
- - component: {fileID: 988415278}
- - component: {fileID: 988415277}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &988415276
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 988415275}
- 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: 1665535851}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &988415277
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 988415275}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &988415278
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 988415275}
---- !u!1 &988873596
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 988873597}
- - component: {fileID: 988873599}
- - component: {fileID: 988873598}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &988873597
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 988873596}
- 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: 1060825441}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &988873598
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 988873596}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &988873599
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 988873596}
---- !u!1 &996818577
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 996818578}
- - component: {fileID: 996818580}
- - component: {fileID: 996818579}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &996818578
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 996818577}
- 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: 350116618}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &996818579
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 996818577}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &996818580
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 996818577}
---- !u!1 &1009147884
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1009147885}
- - component: {fileID: 1009147887}
- - component: {fileID: 1009147886}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1009147885
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1009147884}
- 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: 1832696004}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1009147886
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1009147884}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1009147887
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1009147884}
---- !u!1 &1013676474
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1013676475}
- m_Layer: 0
- m_Name: label_0_87
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1013676475
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1013676474}
- 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: 450391774}
- - {fileID: 785300428}
- m_Father: {fileID: 894361979}
- m_RootOrder: 87
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1015851179
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1015851180}
- - component: {fileID: 1015851182}
- - component: {fileID: 1015851181}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1015851180
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1015851179}
- 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: 1399642849}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1015851181
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1015851179}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1015851182
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1015851179}
---- !u!1 &1016859956
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1016859957}
- - component: {fileID: 1016859959}
- - component: {fileID: 1016859958}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1016859957
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1016859956}
- 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: 1681206412}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1016859958
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1016859956}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1016859959
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1016859956}
---- !u!1 &1022111040
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1022111041}
- - component: {fileID: 1022111043}
- - component: {fileID: 1022111042}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1022111041
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1022111040}
- 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: 1088827721}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1022111042
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1022111040}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1022111043
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1022111040}
---- !u!1 &1025956050
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1025956051}
- m_Layer: 0
- m_Name: label_0_36
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1025956051
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1025956050}
- 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: 699132068}
- - {fileID: 2123338078}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 36
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1030269446
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1030269447}
- m_Layer: 0
- m_Name: label_0_22
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1030269447
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1030269446}
- 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: 970933459}
- - {fileID: 1076201215}
- m_Father: {fileID: 894361979}
- m_RootOrder: 22
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1038647462
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1038647463}
- - component: {fileID: 1038647465}
- - component: {fileID: 1038647464}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1038647463
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038647462}
- 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: 1846086162}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1038647464
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038647462}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1038647465
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038647462}
---- !u!1 &1038724874
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1038724875}
- - component: {fileID: 1038724877}
- - component: {fileID: 1038724876}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1038724875
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038724874}
- 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: 963765539}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1038724876
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038724874}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1038724877
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1038724874}
---- !u!1 &1042464581
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1042464582}
- - component: {fileID: 1042464584}
- - component: {fileID: 1042464583}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1042464582
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1042464581}
- 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: 2037297520}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1042464583
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1042464581}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1042464584
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1042464581}
---- !u!1 &1046252764
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1046252765}
- - component: {fileID: 1046252767}
- - component: {fileID: 1046252766}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1046252765
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1046252764}
- 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: 1261862974}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1046252766
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1046252764}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1046252767
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1046252764}
---- !u!1 &1046546351
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1046546352}
- - component: {fileID: 1046546354}
- - component: {fileID: 1046546353}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1046546352
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1046546351}
- 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: 1982537061}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1046546353
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1046546351}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1046546354
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1046546351}
---- !u!1 &1051619695
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1051619696}
- m_Layer: 0
- m_Name: label_0_60
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1051619696
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1051619695}
- 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: 600428085}
- - {fileID: 225125188}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 60
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1052391764
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1052391765}
- m_Layer: 0
- m_Name: label_0_70
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1052391765
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1052391764}
- 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: 1321873089}
- - {fileID: 1734584291}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 70
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1054950936
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1054950937}
- - component: {fileID: 1054950939}
- - component: {fileID: 1054950938}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1054950937
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1054950936}
- 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: 1866009723}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1054950938
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1054950936}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1054950939
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1054950936}
---- !u!1 &1056115356
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1056115357}
- - component: {fileID: 1056115359}
- - component: {fileID: 1056115358}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1056115357
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1056115356}
- 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: 716622152}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1056115358
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1056115356}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1056115359
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1056115356}
---- !u!1 &1057542513
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1057542514}
- - component: {fileID: 1057542516}
- - component: {fileID: 1057542515}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1057542514
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1057542513}
- 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: 426539878}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1057542515
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1057542513}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1057542516
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1057542513}
---- !u!1 &1060825440
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1060825441}
- m_Layer: 0
- m_Name: label_0_13
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1060825441
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1060825440}
- 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: 988873597}
- - {fileID: 71384907}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 13
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1062304334
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1062304335}
- m_Layer: 0
- m_Name: label_0_96
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1062304335
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1062304334}
- 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: 898278813}
- - {fileID: 1778387277}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 96
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1062876085
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1062876086}
- - component: {fileID: 1062876088}
- - component: {fileID: 1062876087}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1062876086
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1062876085}
- 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: 517073283}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1062876087
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1062876085}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1062876088
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1062876085}
---- !u!1 &1063114076
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1063114077}
- - component: {fileID: 1063114079}
- - component: {fileID: 1063114078}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1063114077
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1063114076}
- 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: 909088521}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1063114078
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1063114076}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1063114079
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1063114076}
---- !u!1 &1064777812
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1064777813}
- m_Layer: 0
- m_Name: label_0_35
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1064777813
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1064777812}
- 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: 229399103}
- - {fileID: 1667754947}
- m_Father: {fileID: 879012035}
- m_RootOrder: 35
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1067001950
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1067001951}
- - component: {fileID: 1067001953}
- - component: {fileID: 1067001952}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1067001951
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1067001950}
- 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: 1825428796}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1067001952
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1067001950}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1067001953
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1067001950}
---- !u!1 &1075166135
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1075166136}
- m_Layer: 0
- m_Name: label_0_81
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1075166136
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1075166135}
- 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: 883847642}
- - {fileID: 1295882263}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 81
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1075455950
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1075455951}
- m_Layer: 0
- m_Name: label_0_67
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1075455951
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1075455950}
- 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: 646296368}
- - {fileID: 1552666789}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 67
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1076201214
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1076201215}
- - component: {fileID: 1076201217}
- - component: {fileID: 1076201216}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1076201215
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1076201214}
- 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: 1030269447}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1076201216
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1076201214}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1076201217
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1076201214}
---- !u!1 &1078980474
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1078980475}
- m_Layer: 0
- m_Name: label_0_16
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1078980475
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1078980474}
- 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: 1982186095}
- - {fileID: 1972466726}
- m_Father: {fileID: 879012035}
- m_RootOrder: 16
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1087371459
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1087371460}
- - component: {fileID: 1087371462}
- - component: {fileID: 1087371461}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1087371460
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1087371459}
- 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: 1114847434}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1087371461
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1087371459}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1087371462
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1087371459}
---- !u!1 &1088827720
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1088827721}
- m_Layer: 0
- m_Name: label_0_90
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1088827721
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1088827720}
- 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: 1022111041}
- - {fileID: 388794014}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 90
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1091729137
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1091729138}
- - component: {fileID: 1091729140}
- - component: {fileID: 1091729139}
- 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 &1091729138
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1091729137}
- 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: 1899141238}
- m_Father: {fileID: 1347932761}
- 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: 400}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1091729139
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1091729137}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1091729140
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1091729137}
---- !u!1 &1092266849
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1092266850}
- - component: {fileID: 1092266852}
- - component: {fileID: 1092266851}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1092266850
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1092266849}
- 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: 1499720928}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1092266851
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1092266849}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1092266852
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1092266849}
---- !u!1 &1093924199
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1093924200}
- - component: {fileID: 1093924202}
- - component: {fileID: 1093924201}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1093924200
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1093924199}
- 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: 609515172}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1093924201
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1093924199}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1093924202
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1093924199}
---- !u!1 &1095146673
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1095146674}
- m_Layer: 0
- m_Name: label_0_99
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1095146674
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1095146673}
- 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: 405131626}
- - {fileID: 1997184302}
- m_Father: {fileID: 894361979}
- m_RootOrder: 99
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1096048471
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1096048472}
- m_Layer: 0
- m_Name: label_0_33
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1096048472
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1096048471}
- 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: 836176530}
- - {fileID: 861185911}
- m_Father: {fileID: 879012035}
- m_RootOrder: 33
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1096608061
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1096608062}
- - component: {fileID: 1096608064}
- - component: {fileID: 1096608063}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1096608062
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1096608061}
- 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: 883498555}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1096608063
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1096608061}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1096608064
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1096608061}
---- !u!1 &1098589684
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1098589685}
- - component: {fileID: 1098589687}
- - component: {fileID: 1098589686}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1098589685
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1098589684}
- 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: 1981146383}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1098589686
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1098589684}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1098589687
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1098589684}
---- !u!1 &1101421954
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1101421955}
- m_Layer: 0
- m_Name: label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1101421955
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1101421954}
- 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: 543791267}
- - {fileID: 1188360019}
- - {fileID: 85211886}
- - {fileID: 1218043124}
- - {fileID: 521225946}
- - {fileID: 1349066357}
- - {fileID: 1743695887}
- - {fileID: 1411537615}
- - {fileID: 1247894225}
- - {fileID: 1799964334}
- - {fileID: 246153540}
- - {fileID: 1976959977}
- - {fileID: 653945287}
- - {fileID: 1060825441}
- - {fileID: 655368975}
- - {fileID: 128228061}
- - {fileID: 100253982}
- - {fileID: 937050842}
- - {fileID: 909088521}
- - {fileID: 1702391192}
- - {fileID: 627627440}
- - {fileID: 705325804}
- - {fileID: 917458070}
- - {fileID: 1682346598}
- - {fileID: 474297828}
- - {fileID: 1477220903}
- - {fileID: 133567236}
- - {fileID: 569417971}
- - {fileID: 1261862974}
- - {fileID: 365298055}
- - {fileID: 905482300}
- - {fileID: 1926027242}
- - {fileID: 1966190624}
- - {fileID: 455406443}
- - {fileID: 1499720928}
- - {fileID: 1808317387}
- - {fileID: 1025956051}
- - {fileID: 1803105631}
- - {fileID: 582417063}
- - {fileID: 2003469503}
- - {fileID: 2067959695}
- - {fileID: 1894582011}
- - {fileID: 1813289517}
- - {fileID: 2008635767}
- - {fileID: 1487007370}
- - {fileID: 1934639676}
- - {fileID: 20866331}
- - {fileID: 2005945473}
- - {fileID: 517073283}
- - {fileID: 1570042025}
- - {fileID: 1389875423}
- - {fileID: 971033759}
- - {fileID: 1638820065}
- - {fileID: 46968580}
- - {fileID: 901098996}
- - {fileID: 1353610635}
- - {fileID: 2113880151}
- - {fileID: 927197954}
- - {fileID: 1216698402}
- - {fileID: 2066190867}
- - {fileID: 1051619696}
- - {fileID: 762986490}
- - {fileID: 640729150}
- - {fileID: 393892058}
- - {fileID: 46999329}
- - {fileID: 138047625}
- - {fileID: 2086747000}
- - {fileID: 1075455951}
- - {fileID: 911241396}
- - {fileID: 336582619}
- - {fileID: 1052391765}
- - {fileID: 24760535}
- - {fileID: 1721764753}
- - {fileID: 1813691827}
- - {fileID: 327258025}
- - {fileID: 406082603}
- - {fileID: 2081478709}
- - {fileID: 682966886}
- - {fileID: 1167528550}
- - {fileID: 198621908}
- - {fileID: 562485111}
- - {fileID: 1075166136}
- - {fileID: 317897654}
- - {fileID: 765350349}
- - {fileID: 951320941}
- - {fileID: 1592038752}
- - {fileID: 1550488560}
- - {fileID: 751047238}
- - {fileID: 1531874593}
- - {fileID: 42712329}
- - {fileID: 1088827721}
- - {fileID: 1975725658}
- - {fileID: 2056459224}
- - {fileID: 1142602764}
- - {fileID: 2044490130}
- - {fileID: 647336199}
- - {fileID: 1062304335}
- - {fileID: 489799707}
- - {fileID: 1487273069}
- - {fileID: 2016230778}
- - {fileID: 1431086154}
- m_Father: {fileID: 680358239}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &1101878034
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1101878035}
- - component: {fileID: 1101878037}
- - component: {fileID: 1101878036}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1101878035
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1101878034}
- 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: 2013350463}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1101878036
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1101878034}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1101878037
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1101878034}
---- !u!1 &1104111041
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1104111042}
- - component: {fileID: 1104111044}
- - component: {fileID: 1104111043}
- m_Layer: 0
- m_Name: content
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1104111042
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1104111041}
- 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: 2125402869}
- m_Father: {fileID: 522121942}
- 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 &1104111043
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1104111041}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1104111044
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1104111041}
---- !u!1 &1108565929
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1108565930}
- - component: {fileID: 1108565932}
- - component: {fileID: 1108565931}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1108565930
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1108565929}
- 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: 650023525}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1108565931
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1108565929}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1108565932
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1108565929}
---- !u!1 &1108716215
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1108716216}
- - component: {fileID: 1108716218}
- - component: {fileID: 1108716217}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1108716216
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1108716215}
- 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: 1862841351}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1108716217
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1108716215}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1108716218
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1108716215}
---- !u!1 &1110516615
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1110516616}
- - component: {fileID: 1110516618}
- - component: {fileID: 1110516617}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1110516616
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1110516615}
- 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: 2129149243}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1110516617
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1110516615}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1110516618
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1110516615}
---- !u!1 &1111485108
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1111485109}
- - component: {fileID: 1111485111}
- - component: {fileID: 1111485110}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1111485109
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1111485108}
- 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: 1798970096}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1111485110
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1111485108}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1111485111
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1111485108}
---- !u!1 &1114847433
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1114847434}
- m_Layer: 0
- m_Name: label_0_86
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1114847434
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1114847433}
- 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: 453247987}
- - {fileID: 1087371460}
- m_Father: {fileID: 894361979}
- m_RootOrder: 86
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1115694408
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1115694409}
- - component: {fileID: 1115694411}
- - component: {fileID: 1115694410}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1115694409
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1115694408}
- 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: 765350349}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1115694410
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1115694408}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1115694411
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1115694408}
---- !u!1 &1117798273
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1117798274}
- - component: {fileID: 1117798276}
- - component: {fileID: 1117798275}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1117798274
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1117798273}
- 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: 2145200427}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1117798275
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1117798273}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1117798276
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1117798273}
---- !u!1 &1117859314
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1117859315}
- - component: {fileID: 1117859317}
- - component: {fileID: 1117859316}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1117859315
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1117859314}
- 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: 751047238}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1117859316
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1117859314}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1117859317
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1117859314}
---- !u!1 &1117996704
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1117996705}
- - component: {fileID: 1117996707}
- - component: {fileID: 1117996706}
- m_Layer: 0
- m_Name: axis_y2_label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1117996705
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1117996704}
- 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: 1858610720}
- m_Father: {fileID: 1347932761}
- 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: 400}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1117996706
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1117996704}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1117996707
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1117996704}
---- !u!1 &1121387700
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1121387701}
- - component: {fileID: 1121387703}
- - component: {fileID: 1121387702}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1121387701
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1121387700}
- 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: 2066190867}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1121387702
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1121387700}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1121387703
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1121387700}
---- !u!1 &1123046080
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1123046081}
- m_Layer: 0
- m_Name: label_0_87
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1123046081
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1123046080}
- 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: 1148846744}
- - {fileID: 92709745}
- m_Father: {fileID: 879012035}
- m_RootOrder: 87
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1126737052
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1126737053}
- - component: {fileID: 1126737055}
- - component: {fileID: 1126737054}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1126737053
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1126737052}
- 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: 1225021475}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1126737054
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1126737052}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1126737055
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1126737052}
---- !u!1 &1129759809
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1129759810}
- - component: {fileID: 1129759812}
- - component: {fileID: 1129759811}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1129759810
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1129759809}
- 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: 292358546}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1129759811
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1129759809}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1129759812
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1129759809}
---- !u!1 &1130696535
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1130696536}
- - component: {fileID: 1130696538}
- - component: {fileID: 1130696537}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1130696536
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1130696535}
- 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: 1671388736}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1130696537
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1130696535}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1130696538
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1130696535}
---- !u!1 &1130777855
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1130777856}
- m_Layer: 0
- m_Name: label_0_41
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1130777856
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1130777855}
- 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: 742032094}
- - {fileID: 1830812503}
- m_Father: {fileID: 894361979}
- m_RootOrder: 41
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1140522104
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1140522105}
- - component: {fileID: 1140522107}
- - component: {fileID: 1140522106}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1140522105
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1140522104}
- 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: 1803105631}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1140522106
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1140522104}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1140522107
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1140522104}
---- !u!1 &1141381735
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1141381736}
- m_Layer: 0
- m_Name: label_0_57
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1141381736
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1141381735}
- 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: 1896059788}
- - {fileID: 249878135}
- m_Father: {fileID: 894361979}
- m_RootOrder: 57
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1141575591
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1141575592}
- m_Layer: 0
- m_Name: legend
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1141575592
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1141575591}
- 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: 237605830}
- 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: -30}
- m_SizeDelta: {x: 1810, y: 400}
- m_Pivot: {x: 0.5, y: 1}
---- !u!1 &1142602763
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1142602764}
- m_Layer: 0
- m_Name: label_0_93
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1142602764
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1142602763}
- 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: 1896810089}
- - {fileID: 1942733326}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 93
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1148818414
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1148818415}
- - component: {fileID: 1148818417}
- - component: {fileID: 1148818416}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1148818415
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1148818414}
- 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: 927197954}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1148818416
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1148818414}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1148818417
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1148818414}
---- !u!1 &1148846743
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1148846744}
- - component: {fileID: 1148846746}
- - component: {fileID: 1148846745}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1148846744
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1148846743}
- 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: 1123046081}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1148846745
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1148846743}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1148846746
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1148846743}
---- !u!1 &1149078503
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1149078504}
- m_Layer: 0
- m_Name: label_0_60
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1149078504
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1149078503}
- 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: 1376936245}
- - {fileID: 710673756}
- m_Father: {fileID: 894361979}
- m_RootOrder: 60
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1156259264
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1156259265}
- - component: {fileID: 1156259267}
- - component: {fileID: 1156259266}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1156259265
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1156259264}
- 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: 2016230778}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1156259266
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1156259264}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1156259267
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1156259264}
---- !u!1 &1157648447
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1157648448}
- - component: {fileID: 1157648450}
- - component: {fileID: 1157648449}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1157648448
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1157648447}
- 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: 678738528}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1157648449
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1157648447}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1157648450
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1157648447}
---- !u!1 &1160781939
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1160781940}
- m_Layer: 0
- m_Name: title
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1160781940
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1160781939}
- 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: 1417916570}
- - {fileID: 466372293}
- m_Father: {fileID: 1304222265}
- 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: -5}
- m_SizeDelta: {x: 1810.51, y: 140}
- m_Pivot: {x: 0.5, y: 1}
---- !u!1 &1162852773
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1162852774}
- - component: {fileID: 1162852776}
- - component: {fileID: 1162852775}
- m_Layer: 0
- m_Name: axis_x23
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1162852774
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1162852773}
- 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: 399349871}
- 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: 1434, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1162852775
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1162852773}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1162852776
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1162852773}
---- !u!1 &1163828305
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1163828306}
- - component: {fileID: 1163828308}
- - component: {fileID: 1163828307}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1163828306
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1163828305}
- 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: 17612909}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1163828307
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1163828305}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1163828308
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1163828305}
---- !u!1 &1167528549
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1167528550}
- m_Layer: 0
- m_Name: label_0_78
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1167528550
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1167528549}
- 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: 1221332574}
- - {fileID: 477946297}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 78
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1168445595
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1168445596}
- - component: {fileID: 1168445598}
- - component: {fileID: 1168445597}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1168445596
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1168445595}
- 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: 675546638}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1168445597
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1168445595}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1168445598
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1168445595}
---- !u!1 &1171939961
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1171939962}
- - component: {fileID: 1171939964}
- - component: {fileID: 1171939963}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1171939962
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1171939961}
- 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: 1270706517}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1171939963
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1171939961}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1171939964
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1171939961}
---- !u!1 &1173829382
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1173829383}
- - component: {fileID: 1173829385}
- - component: {fileID: 1173829384}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1173829383
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1173829382}
- 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: 1277720618}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1173829384
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1173829382}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1173829385
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1173829382}
---- !u!1 &1176622296
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1176622297}
- - component: {fileID: 1176622299}
- - component: {fileID: 1176622298}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1176622297
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1176622296}
- 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: 940568876}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1176622298
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1176622296}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1176622299
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1176622296}
---- !u!1 &1179154439
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1179154440}
- - component: {fileID: 1179154442}
- - component: {fileID: 1179154441}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1179154440
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1179154439}
- 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: 521225946}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1179154441
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1179154439}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1179154442
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1179154439}
---- !u!1 &1179172854
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1179172855}
- - component: {fileID: 1179172857}
- - component: {fileID: 1179172856}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1179172855
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1179172854}
- 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: 1982537061}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1179172856
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1179172854}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1179172857
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1179172854}
---- !u!1 &1185998407
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1185998408}
- - component: {fileID: 1185998410}
- - component: {fileID: 1185998409}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1185998408
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1185998407}
- 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: 1389875423}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1185998409
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1185998407}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1185998410
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1185998407}
---- !u!1 &1188264453
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1188264454}
- - component: {fileID: 1188264456}
- - component: {fileID: 1188264455}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1188264454
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1188264453}
- 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: 647336199}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1188264455
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1188264453}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1188264456
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1188264453}
---- !u!1 &1188360018
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1188360019}
- m_Layer: 0
- m_Name: label_0_1
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1188360019
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1188360018}
- 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: 86285047}
- - {fileID: 57413881}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 1
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1194826221
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1194826222}
- - component: {fileID: 1194826224}
- - component: {fileID: 1194826223}
- 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 &1194826222
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1194826221}
- 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: 554873560}
- 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: 110}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1194826223
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1194826221}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 5
---- !u!222 &1194826224
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1194826221}
---- !u!1 &1195981928
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1195981929}
- - component: {fileID: 1195981931}
- - component: {fileID: 1195981930}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1195981929
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1195981928}
- 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: 414556830}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1195981930
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1195981928}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1195981931
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1195981928}
---- !u!1 &1199274734
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1199274735}
- m_Layer: 0
- m_Name: label_0_78
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1199274735
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1199274734}
- 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: 822116523}
- - {fileID: 1344032553}
- m_Father: {fileID: 894361979}
- m_RootOrder: 78
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1199600324
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1199600325}
- - component: {fileID: 1199600327}
- - component: {fileID: 1199600326}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1199600325
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1199600324}
- 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: 2059699167}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1199600326
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1199600324}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1199600327
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1199600324}
---- !u!1 &1200581406
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1200581407}
- - component: {fileID: 1200581409}
- - component: {fileID: 1200581408}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1200581407
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1200581406}
- 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: 1203322206}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1200581408
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1200581406}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1200581409
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1200581406}
---- !u!1 &1202014621
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1202014622}
- - component: {fileID: 1202014624}
- - component: {fileID: 1202014623}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1202014622
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1202014621}
- 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: 1759583629}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1202014623
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1202014621}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1202014624
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1202014621}
---- !u!1 &1202112591
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1202112592}
- - component: {fileID: 1202112594}
- - component: {fileID: 1202112593}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1202112592
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1202112591}
- 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: 1481740289}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1202112593
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1202112591}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1202112594
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1202112591}
---- !u!1 &1203322205
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1203322206}
- m_Layer: 0
- m_Name: label_0_77
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1203322206
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1203322205}
- 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: 929963291}
- - {fileID: 1200581407}
- m_Father: {fileID: 879012035}
- m_RootOrder: 77
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1203609363
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1203609364}
- - component: {fileID: 1203609366}
- - component: {fileID: 1203609365}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1203609364
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1203609363}
- 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: 562485111}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1203609365
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1203609363}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1203609366
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1203609363}
---- !u!1 &1204256122
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1204256123}
- - component: {fileID: 1204256125}
- - component: {fileID: 1204256124}
- 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 &1204256123
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1204256122}
- 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: 554873560}
- 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: 270}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1204256124
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1204256122}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 15
---- !u!222 &1204256125
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1204256122}
---- !u!1 &1207246501
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1207246502}
- - component: {fileID: 1207246504}
- - component: {fileID: 1207246503}
- 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 &1207246502
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1207246501}
- 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: 247028392}
- 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: -8, y: 130}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1207246503
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1207246501}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 60
---- !u!222 &1207246504
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1207246501}
---- !u!1 &1215537369
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1215537370}
- - component: {fileID: 1215537372}
- - component: {fileID: 1215537371}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1215537370
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1215537369}
- 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: 1487273069}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1215537371
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1215537369}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1215537372
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1215537369}
---- !u!1 &1216059565
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1216059566}
- - component: {fileID: 1216059568}
- - component: {fileID: 1216059567}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1216059566
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216059565}
- 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: 428550738}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1216059567
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216059565}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1216059568
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216059565}
---- !u!1 &1216474454
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1216474455}
- m_Layer: 0
- m_Name: label_0_15
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1216474455
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216474454}
- 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: 284126104}
- - {fileID: 1847663147}
- m_Father: {fileID: 879012035}
- m_RootOrder: 15
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1216652219
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1216652220}
- - component: {fileID: 1216652222}
- - component: {fileID: 1216652221}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1216652220
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216652219}
- 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: 2124189020}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1216652221
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216652219}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1216652222
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216652219}
---- !u!1 &1216698401
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1216698402}
- m_Layer: 0
- m_Name: label_0_58
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1216698402
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216698401}
- 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: 1288167882}
- - {fileID: 911188241}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 58
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1216813111
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1216813112}
- - component: {fileID: 1216813114}
- - component: {fileID: 1216813113}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1216813112
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216813111}
- 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: 406082603}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1216813113
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216813111}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1216813114
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1216813111}
---- !u!1 &1218043123
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1218043124}
- m_Layer: 0
- m_Name: label_0_3
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1218043124
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1218043123}
- 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: 1301552391}
- - {fileID: 2127129183}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 3
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1218214232
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1218214233}
- - component: {fileID: 1218214235}
- - component: {fileID: 1218214234}
- m_Layer: 0
- m_Name: axis_x23
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1218214233
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1218214232}
- 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: 1400674265}
- 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: 1434, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1218214234
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1218214232}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1218214235
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1218214232}
---- !u!1 &1218385644
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1218385645}
- - component: {fileID: 1218385647}
- - component: {fileID: 1218385646}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1218385645
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1218385644}
- 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: 138047625}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1218385646
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1218385644}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1218385647
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1218385644}
---- !u!1 &1221226891
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1221226892}
- - component: {fileID: 1221226894}
- - component: {fileID: 1221226893}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1221226892
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1221226891}
- 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: 247847427}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1221226893
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1221226891}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1221226894
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1221226891}
---- !u!1 &1221332573
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1221332574}
- - component: {fileID: 1221332576}
- - component: {fileID: 1221332575}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1221332574
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1221332573}
- 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: 1167528550}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1221332575
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1221332573}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1221332576
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1221332573}
---- !u!1 &1222274247
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1222274248}
- - component: {fileID: 1222274250}
- - component: {fileID: 1222274249}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1222274248
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1222274247}
- 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: 1470695275}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1222274249
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1222274247}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1222274250
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1222274247}
---- !u!1 &1224384569
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1224384570}
- - component: {fileID: 1224384572}
- - component: {fileID: 1224384571}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1224384570
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1224384569}
- 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: 940568876}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1224384571
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1224384569}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1224384572
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1224384569}
---- !u!1 &1225021474
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1225021475}
- m_Layer: 0
- m_Name: label_0_88
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1225021475
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1225021474}
- 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: 1126737053}
- - {fileID: 521913548}
- m_Father: {fileID: 879012035}
- m_RootOrder: 88
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1225838653
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1225838654}
- m_Layer: 0
- m_Name: label_0_81
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1225838654
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1225838653}
- 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: 1908810026}
- - {fileID: 1961462949}
- m_Father: {fileID: 879012035}
- m_RootOrder: 81
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1229740949
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1229740950}
- - component: {fileID: 1229740952}
- - component: {fileID: 1229740951}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1229740950
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1229740949}
- 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: 434559239}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1229740951
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1229740949}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1229740952
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1229740949}
---- !u!1 &1229748661
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1229748662}
- - component: {fileID: 1229748664}
- - component: {fileID: 1229748663}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1229748662
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1229748661}
- 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: 923753142}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1229748663
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1229748661}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1229748664
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1229748661}
---- !u!1 &1231096955
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1231096956}
- - component: {fileID: 1231096958}
- - component: {fileID: 1231096957}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1231096956
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1231096955}
- 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: 1309058429}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1231096957
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1231096955}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1231096958
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1231096955}
---- !u!1 &1232731132
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1232731133}
- - component: {fileID: 1232731135}
- - component: {fileID: 1232731134}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1232731133
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1232731132}
- 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: 1656275548}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1232731134
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1232731132}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1232731135
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1232731132}
---- !u!1 &1236447856
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1236447857}
- - component: {fileID: 1236447859}
- - component: {fileID: 1236447858}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1236447857
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1236447856}
- 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: 1926027242}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1236447858
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1236447856}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1236447859
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1236447856}
---- !u!1 &1237344970
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1237344971}
- - component: {fileID: 1237344973}
- - component: {fileID: 1237344972}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1237344971
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1237344970}
- 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: 979805674}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1237344972
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1237344970}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1237344973
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1237344970}
---- !u!1 &1239995630
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1239995631}
- - component: {fileID: 1239995633}
- - component: {fileID: 1239995632}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1239995631
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1239995630}
- 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: 614107540}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1239995632
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1239995630}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1239995633
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1239995630}
---- !u!1 &1240646900
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1240646901}
- - component: {fileID: 1240646903}
- - component: {fileID: 1240646902}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1240646901
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1240646900}
- 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: 489799707}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1240646902
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1240646900}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1240646903
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1240646900}
---- !u!1 &1241607723
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1241607724}
- - component: {fileID: 1241607726}
- - component: {fileID: 1241607725}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1241607724
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1241607723}
- 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: 1499237570}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1241607725
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1241607723}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1241607726
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1241607723}
---- !u!1 &1245702001
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1245702002}
- - component: {fileID: 1245702004}
- - component: {fileID: 1245702003}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1245702002
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1245702001}
- 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: 1247894225}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1245702003
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1245702001}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1245702004
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1245702001}
---- !u!1 &1247894224
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1247894225}
- m_Layer: 0
- m_Name: label_0_8
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1247894225
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1247894224}
- 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: 1245702002}
- - {fileID: 84010143}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 8
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1249296110
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1249296111}
- - component: {fileID: 1249296113}
- - component: {fileID: 1249296112}
- 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 &1249296111
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1249296110}
- 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: 247028392}
- 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.17, y: 126.25}
- m_SizeDelta: {x: 50.17, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1249296112
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1249296110}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 60
---- !u!222 &1249296113
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1249296110}
---- !u!1 &1254973737
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1254973738}
- m_Layer: 0
- m_Name: label_0_80
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1254973738
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1254973737}
- 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: 180536882}
- - {fileID: 846651512}
- m_Father: {fileID: 879012035}
- m_RootOrder: 80
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1259337551
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1259337552}
- - component: {fileID: 1259337554}
- - component: {fileID: 1259337553}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1259337552
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1259337551}
- 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: 670718773}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1259337553
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1259337551}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1259337554
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1259337551}
---- !u!1 &1261862973
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1261862974}
- m_Layer: 0
- m_Name: label_0_28
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1261862974
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1261862973}
- 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: 1046252765}
- - {fileID: 1691230798}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 28
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1264668856
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1264668857}
- - component: {fileID: 1264668859}
- - component: {fileID: 1264668858}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1264668857
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1264668856}
- 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: 569155130}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1264668858
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1264668856}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1264668859
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1264668856}
---- !u!1 &1265367031
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1265367032}
- - component: {fileID: 1265367034}
- - component: {fileID: 1265367033}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1265367032
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1265367031}
- 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: 170996848}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1265367033
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1265367031}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1265367034
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1265367031}
---- !u!1 &1265568031
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1265568032}
- m_Layer: 0
- m_Name: label_0_70
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1265568032
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1265568031}
- 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: 390480751}
- - {fileID: 2096782640}
- m_Father: {fileID: 879012035}
- m_RootOrder: 70
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1268816445
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1268816446}
- - component: {fileID: 1268816448}
- - component: {fileID: 1268816447}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1268816446
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1268816445}
- 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: 1799964334}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1268816447
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1268816445}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1268816448
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1268816445}
---- !u!1 &1270706516
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1270706517}
- m_Layer: 0
- m_Name: label_0_45
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1270706517
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1270706516}
- 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: 742546966}
- - {fileID: 1171939962}
- m_Father: {fileID: 879012035}
- m_RootOrder: 45
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1272151811
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1272151812}
- - component: {fileID: 1272151814}
- - component: {fileID: 1272151813}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1272151812
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1272151811}
- 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: 756114645}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1272151813
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1272151811}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1272151814
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1272151811}
---- !u!1 &1275666644
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1275666645}
- - component: {fileID: 1275666647}
- - component: {fileID: 1275666646}
- m_Layer: 0
- m_Name: axis_x2_label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1275666645
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1275666644}
- 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: 1770096153}
- m_Father: {fileID: 2052739601}
- 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: 140}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &1275666646
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1275666644}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1275666647
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1275666644}
---- !u!1 &1277364466
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1277364467}
- - component: {fileID: 1277364469}
- - component: {fileID: 1277364468}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1277364467
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1277364466}
- 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: 198621908}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1277364468
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1277364466}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1277364469
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1277364466}
---- !u!1 &1277720617
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1277720618}
- m_Layer: 0
- m_Name: label_0_56
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1277720618
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1277720617}
- 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: 175203702}
- - {fileID: 1173829383}
- m_Father: {fileID: 879012035}
- m_RootOrder: 56
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1281076645
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1281076646}
- - component: {fileID: 1281076648}
- - component: {fileID: 1281076647}
- 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 &1281076646
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1281076645}
- 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: 125763605}
- 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: 1088, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1281076647
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1281076645}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:06
---- !u!222 &1281076648
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1281076645}
---- !u!1 &1285440028
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1285440029}
- - component: {fileID: 1285440031}
- - component: {fileID: 1285440030}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1285440029
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1285440028}
- 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: 655368975}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1285440030
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1285440028}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1285440031
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1285440028}
---- !u!1 &1286901906
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1286901907}
- m_Layer: 0
- m_Name: label_0_18
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1286901907
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1286901906}
- 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: 733658459}
- - {fileID: 848791623}
- m_Father: {fileID: 894361979}
- m_RootOrder: 18
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1288167881
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1288167882}
- - component: {fileID: 1288167884}
- - component: {fileID: 1288167883}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1288167882
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1288167881}
- 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: 1216698402}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1288167883
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1288167881}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1288167884
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1288167881}
---- !u!1 &1288200956
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1288200957}
- - component: {fileID: 1288200959}
- - component: {fileID: 1288200958}
- m_Layer: 0
- m_Name: axis_y24
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1288200957
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1288200956}
- 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: 1527990582}
- 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: 1818.51, y: 130}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1288200958
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1288200956}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1288200959
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1288200956}
---- !u!1 &1288521369
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1288521370}
- - component: {fileID: 1288521372}
- - component: {fileID: 1288521371}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1288521370
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1288521369}
- 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: 86579206}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1288521371
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1288521369}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1288521372
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1288521369}
---- !u!1 &1291249603
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1291249604}
- - component: {fileID: 1291249606}
- - component: {fileID: 1291249605}
- 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 &1291249604
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1291249603}
- 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: 1633117997}
- 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: 270}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1291249605
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1291249603}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 15
---- !u!222 &1291249606
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1291249603}
---- !u!1 &1292924289
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1292924290}
- m_Layer: 0
- m_Name: label_0_33
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1292924290
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1292924289}
- 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: 523651051}
- - {fileID: 1601848424}
- m_Father: {fileID: 894361979}
- m_RootOrder: 33
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &1293145703
GameObject:
m_ObjectHideFlags: 0
@@ -48193,432 +47288,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1293145703}
---- !u!1 &1295077363
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1295077364}
- - component: {fileID: 1295077366}
- - component: {fileID: 1295077365}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1295077364
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1295077363}
- 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: 92198298}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1295077365
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1295077363}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1295077366
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1295077363}
---- !u!1 &1295829714
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1295829715}
- - component: {fileID: 1295829717}
- - component: {fileID: 1295829716}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1295829715
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1295829714}
- 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: 175999139}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1295829716
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1295829714}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1295829717
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1295829714}
---- !u!1 &1295882262
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1295882263}
- - component: {fileID: 1295882265}
- - component: {fileID: 1295882264}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1295882263
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1295882262}
- 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: 1075166136}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1295882264
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1295882262}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1295882265
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1295882262}
---- !u!1 &1298259779
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1298259780}
- - component: {fileID: 1298259782}
- - component: {fileID: 1298259781}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1298259780
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1298259779}
- 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: 1697835705}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1298259781
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1298259779}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1298259782
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1298259779}
---- !u!1 &1301552390
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1301552391}
- - component: {fileID: 1301552393}
- - component: {fileID: 1301552392}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1301552391
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1301552390}
- 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: 1218043124}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1301552392
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1301552390}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1301552393
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1301552390}
---- !u!1 &1303355052
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1303355053}
- - component: {fileID: 1303355055}
- - component: {fileID: 1303355054}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1303355053
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1303355052}
- 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: 268732617}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1303355054
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1303355052}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1303355055
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1303355052}
--- !u!1 &1304222264
GameObject:
m_ObjectHideFlags: 0
@@ -48645,17 +47314,7 @@ RectTransform:
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: 1160781940}
- - {fileID: 771014156}
- - {fileID: 879012035}
- - {fileID: 1958462749}
- - {fileID: 1715653984}
- - {fileID: 1744434248}
- - {fileID: 1436921200}
- - {fileID: 247028392}
- - {fileID: 1527990582}
- - {fileID: 2052739601}
+ m_Children: []
m_Father: {fileID: 109785148}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -48684,7 +47343,6 @@ MonoBehaviour:
m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
m_ChartName:
- m_ChartUUID:
m_ChartWidth: 1810.51
m_ChartHeight: 140
m_ChartX: 0
@@ -48886,6 +47544,18 @@ MonoBehaviour:
m_Right: 0
m_Top: 5
m_Bottom: 0
+ m_Background:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Image: {fileID: 0}
+ m_ImageType: 1
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ImageColor: {r: 1, g: 1, b: 1, a: 1}
+ m_HideThemeBackgroundColor: 1
m_Legend:
m_JsonData:
m_DataFromJson: 0
@@ -49147,7 +47817,7 @@ MonoBehaviour:
m_DataChangeDuration: 500
m_ActualDuration: 0
m_CurrDetailProgress: 0
- m_DestDetailProgress: 1
+ m_DestDetailProgress: 0
m_LineArrow:
m_JsonData:
m_DataFromJson: 0
@@ -49376,7 +48046,854 @@ MonoBehaviour:
- 0
m_Data:
- 0
- - 3.967079
+ - 17.824116
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 1
+ - 6.5652995
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 2
+ - 9.868991
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 3
+ - 7.905417
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 4
+ - 6.49779
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 5
+ - 6.5675173
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 6
+ - 6.5831704
+ - m_JsonData:
+ m_DataFromJson: 0
+ m_Name:
+ m_Selected: 0
+ m_Radius: 0
+ m_IconStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Layer: 0
+ m_Sprite: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Width: 40
+ m_Height: 40
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_EnableLabel: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_EnableItemStyle: 0
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_EnableEmphasis: 0
+ m_Emphasis:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Label:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Position: 0
+ m_Offset: {x: 0, y: 0, z: 0}
+ m_Margin: 0
+ m_Formatter:
+ m_Rotate: 0
+ m_PaddingLeftRight: 2
+ m_PaddingTopBottom: 2
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_BackgroundHeight: 0
+ m_FontSize: 18
+ m_FontStyle: 0
+ m_Line: 1
+ m_LineType: 0
+ m_LineColor: {r: 0, g: 0, b: 0, a: 0}
+ m_LineWidth: 1
+ m_LineLength1: 25
+ m_LineLength2: 15
+ m_Border: 0
+ m_BorderWidth: 0.5
+ m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_NumericFormatter:
+ m_ItemStyle:
+ m_JsonData:
+ m_DataFromJson: 0
+ m_Show: 0
+ m_Color: {r: 0, g: 0, b: 0, a: 0}
+ m_ToColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_BackgroundWidth: 0
+ m_CenterColor: {r: 0, g: 0, b: 0, a: 0}
+ m_CenterGap: 0
+ m_BorderType: 0
+ m_BorderWidth: 0
+ m_BorderColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Opacity: 1
+ m_TooltipFormatter:
+ m_NumericFormatter:
+ m_CornerRadius:
+ - 0
+ - 0
+ - 0
+ - 0
+ m_Data:
+ - 7
+ - 5.005091
m_Settings:
m_JsonData:
m_DataFromJson: 0
@@ -49387,8 +48904,6 @@ MonoBehaviour:
m_VisualMapTriangeLen: 20
m_PieTooltipExtraRadius: 8
m_PieSelectedOffset: 8
- m_Large: 1
- m_DebugInfo:
m_Grid:
m_JsonData:
m_DataFromJson: 0
@@ -49415,7 +48930,14 @@ MonoBehaviour:
m_CeilRate: 0
m_Inverse: 0
m_Data:
- - 3
+ - 4
+ - 6
+ - 8
+ - 10
+ - 12
+ - 14
+ - 16
+ - 18
m_AxisLine:
m_JsonData:
m_DataFromJson: 0
@@ -49822,603 +49344,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1304222264}
---- !u!1 &1309058428
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1309058429}
- m_Layer: 0
- m_Name: label_0_77
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1309058429
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1309058428}
- 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: 2075553649}
- - {fileID: 1231096956}
- m_Father: {fileID: 894361979}
- m_RootOrder: 77
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1311823599
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1311823600}
- - component: {fileID: 1311823602}
- - component: {fileID: 1311823601}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1311823600
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1311823599}
- 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: 1922601331}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1311823601
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1311823599}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1311823602
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1311823599}
---- !u!1 &1320244764
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1320244765}
- - component: {fileID: 1320244767}
- - component: {fileID: 1320244766}
- 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 &1320244765
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1320244764}
- 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: 1958462749}
- 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: 0}
- m_SizeDelta: {x: 50, y: 12}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1320244766
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1320244764}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1320244767
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1320244764}
---- !u!1 &1321080229
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1321080230}
- - component: {fileID: 1321080232}
- - component: {fileID: 1321080231}
- 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 &1321080230
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1321080229}
- 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: 607005197}
- 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: 1088, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1321080231
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1321080229}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:06
---- !u!222 &1321080232
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1321080229}
---- !u!1 &1321873088
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1321873089}
- - component: {fileID: 1321873091}
- - component: {fileID: 1321873090}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1321873089
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1321873088}
- 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: 1052391765}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1321873090
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1321873088}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1321873091
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1321873088}
---- !u!1 &1323562384
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1323562385}
- - component: {fileID: 1323562387}
- - component: {fileID: 1323562386}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1323562385
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1323562384}
- 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: 1976959977}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1323562386
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1323562384}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1323562387
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1323562384}
---- !u!1 &1326301510
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1326301511}
- - component: {fileID: 1326301513}
- - component: {fileID: 1326301512}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1326301511
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1326301510}
- 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: 953675585}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1326301512
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1326301510}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1326301513
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1326301510}
---- !u!1 &1329900065
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1329900066}
- - component: {fileID: 1329900068}
- - component: {fileID: 1329900067}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1329900066
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1329900065}
- 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: 987458730}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1329900067
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1329900065}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1329900068
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1329900065}
---- !u!1 &1333764821
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1333764822}
- - component: {fileID: 1333764824}
- - component: {fileID: 1333764823}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1333764822
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1333764821}
- 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: 298128255}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1333764823
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1333764821}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1333764824
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1333764821}
--- !u!1 &1335436665
GameObject:
m_ObjectHideFlags: 0
@@ -50493,4302 +49418,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1335436665}
---- !u!1 &1343298580
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1343298581}
- - component: {fileID: 1343298583}
- - component: {fileID: 1343298582}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1343298581
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1343298580}
- 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: 2138665633}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1343298582
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1343298580}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1343298583
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1343298580}
---- !u!1 &1344032552
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1344032553}
- - component: {fileID: 1344032555}
- - component: {fileID: 1344032554}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1344032553
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1344032552}
- 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: 1199274735}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1344032554
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1344032552}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1344032555
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1344032552}
---- !u!1 &1346278377
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1346278378}
- - component: {fileID: 1346278380}
- - component: {fileID: 1346278379}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1346278378
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1346278377}
- 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: 1458321885}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1346278379
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1346278377}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1346278380
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1346278377}
---- !u!1 &1346682446
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1346682447}
- - component: {fileID: 1346682449}
- - component: {fileID: 1346682448}
- m_Layer: 0
- m_Name: title
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1346682447
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1346682446}
- 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: 314818574}
- 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: 1810, y: 16}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &1346682448
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1346682446}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 1
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 1
- m_LineSpacing: 1
- m_Text: "20\u6570\u636E"
---- !u!222 &1346682449
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1346682446}
---- !u!1 &1346698220
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1346698221}
- - component: {fileID: 1346698223}
- - component: {fileID: 1346698222}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1346698221
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1346698220}
- 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: 891500381}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1346698222
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1346698220}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1346698223
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1346698220}
---- !u!1 &1347031505
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1347031506}
- - component: {fileID: 1347031508}
- - component: {fileID: 1347031507}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1347031506
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1347031505}
- 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: 20866331}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1347031507
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1347031505}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1347031508
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1347031505}
---- !u!1 &1347932760
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1347932761}
- m_Layer: 0
- m_Name: tooltip
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1347932761
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1347932760}
- 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: 2117503485}
- - {fileID: 216606161}
- - {fileID: 435721527}
- - {fileID: 1091729138}
- - {fileID: 1117996705}
- m_Father: {fileID: 237605830}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &1349066356
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1349066357}
- m_Layer: 0
- m_Name: label_0_5
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1349066357
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1349066356}
- 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: 484336706}
- - {fileID: 559702552}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 5
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1353610634
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1353610635}
- m_Layer: 0
- m_Name: label_0_55
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1353610635
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1353610634}
- 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: 790605076}
- - {fileID: 1439479564}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 55
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1353774109
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1353774110}
- - component: {fileID: 1353774112}
- - component: {fileID: 1353774111}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1353774110
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1353774109}
- 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: 1592038752}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1353774111
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1353774109}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1353774112
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1353774109}
---- !u!1 &1354578950
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1354578951}
- - component: {fileID: 1354578953}
- - component: {fileID: 1354578952}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1354578951
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1354578950}
- 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: 906661467}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1354578952
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1354578950}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1354578953
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1354578950}
---- !u!1 &1355490833
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1355490834}
- - component: {fileID: 1355490836}
- - component: {fileID: 1355490835}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1355490834
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1355490833}
- 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: 1702391192}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1355490835
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1355490833}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1355490836
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1355490833}
---- !u!1 &1356322488
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1356322489}
- - component: {fileID: 1356322491}
- - component: {fileID: 1356322490}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1356322489
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1356322488}
- 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: 92198298}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1356322490
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1356322488}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1356322491
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1356322488}
---- !u!1 &1360611619
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1360611620}
- - component: {fileID: 1360611622}
- - component: {fileID: 1360611621}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1360611620
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1360611619}
- 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: 917458070}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1360611621
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1360611619}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1360611622
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1360611619}
---- !u!1 &1361202309
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1361202310}
- - component: {fileID: 1361202312}
- - component: {fileID: 1361202311}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1361202310
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1361202309}
- 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: 434559239}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1361202311
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1361202309}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1361202312
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1361202309}
---- !u!1 &1362925384
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1362925385}
- - component: {fileID: 1362925387}
- - component: {fileID: 1362925386}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1362925385
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1362925384}
- 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: 627627440}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1362925386
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1362925384}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1362925387
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1362925384}
---- !u!1 &1366649834
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1366649835}
- - component: {fileID: 1366649837}
- - component: {fileID: 1366649836}
- m_Layer: 0
- m_Name: axis_x8
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1366649835
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1366649834}
- 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: 125763605}
- 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: 1607, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1366649836
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1366649834}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:09
---- !u!222 &1366649837
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1366649834}
---- !u!1 &1367553484
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1367553485}
- m_Layer: 0
- m_Name: label_0_21
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1367553485
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1367553484}
- 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: 1857120897}
- - {fileID: 215065552}
- m_Father: {fileID: 879012035}
- m_RootOrder: 21
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1367984698
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1367984699}
- - component: {fileID: 1367984701}
- - component: {fileID: 1367984700}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1367984699
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1367984698}
- 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: 246153540}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1367984700
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1367984698}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1367984701
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1367984698}
---- !u!1 &1368652555
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1368652556}
- - component: {fileID: 1368652558}
- - component: {fileID: 1368652557}
- 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 &1368652556
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1368652555}
- 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: 1744434248}
- 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: 1584.1963, y: -147}
- m_SizeDelta: {x: 452.6275, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1368652557
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1368652555}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1368652558
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1368652555}
---- !u!1 &1373314097
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1373314098}
- - component: {fileID: 1373314100}
- - component: {fileID: 1373314099}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1373314098
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1373314097}
- 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: 1894582011}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1373314099
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1373314097}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1373314100
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1373314097}
---- !u!1 &1376936244
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1376936245}
- - component: {fileID: 1376936247}
- - component: {fileID: 1376936246}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1376936245
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1376936244}
- 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: 1149078504}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1376936246
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1376936244}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1376936247
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1376936244}
---- !u!1 &1378139614
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1378139615}
- m_Layer: 0
- m_Name: label_0_8
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1378139615
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1378139614}
- 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: 969933317}
- - {fileID: 2077525521}
- m_Father: {fileID: 894361979}
- m_RootOrder: 8
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1379246023
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1379246024}
- m_Layer: 0
- m_Name: label_0_30
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1379246024
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1379246023}
- 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: 1620388688}
- - {fileID: 1992711317}
- m_Father: {fileID: 879012035}
- m_RootOrder: 30
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1379273304
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1379273305}
- - component: {fileID: 1379273307}
- - component: {fileID: 1379273306}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1379273305
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1379273304}
- 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: 1542518337}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1379273306
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1379273304}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1379273307
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1379273304}
---- !u!1 &1385922749
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1385922750}
- - component: {fileID: 1385922752}
- - component: {fileID: 1385922751}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1385922750
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1385922749}
- 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: 414556830}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1385922751
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1385922749}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1385922752
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1385922749}
---- !u!1 &1389875422
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1389875423}
- m_Layer: 0
- m_Name: label_0_50
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1389875423
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1389875422}
- 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: 1185998408}
- - {fileID: 723212843}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 50
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1397180238
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1397180239}
- m_Layer: 0
- m_Name: label_0_32
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1397180239
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1397180238}
- 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: 2120439424}
- - {fileID: 1941400851}
- m_Father: {fileID: 894361979}
- m_RootOrder: 32
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1398842819
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1398842820}
- - component: {fileID: 1398842822}
- - component: {fileID: 1398842821}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1398842820
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1398842819}
- 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: 2061986587}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1398842821
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1398842819}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1398842822
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1398842819}
---- !u!1 &1399642848
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1399642849}
- m_Layer: 0
- m_Name: label_0_93
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1399642849
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1399642848}
- 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: 456454421}
- - {fileID: 1015851180}
- m_Father: {fileID: 894361979}
- m_RootOrder: 93
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1400674264
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1400674265}
- m_Layer: 0
- m_Name: axis_x2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1400674265
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1400674264}
- 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: 2013357882}
- - {fileID: 812056909}
- - {fileID: 81239820}
- - {fileID: 1218214233}
- - {fileID: 857695784}
- m_Father: {fileID: 680358239}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &1404076430
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1404076431}
- - component: {fileID: 1404076433}
- - component: {fileID: 1404076432}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1404076431
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1404076430}
- 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: 917458070}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1404076432
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1404076430}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1404076433
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1404076430}
---- !u!1 &1406500812
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1406500813}
- - component: {fileID: 1406500815}
- - component: {fileID: 1406500814}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1406500813
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1406500812}
- 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: 1501762530}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1406500814
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1406500812}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1406500815
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1406500812}
---- !u!1 &1406658789
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1406658790}
- - component: {fileID: 1406658792}
- - component: {fileID: 1406658791}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1406658790
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1406658789}
- 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: 1408578610}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1406658791
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1406658789}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1406658792
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1406658789}
---- !u!1 &1408578609
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1408578610}
- m_Layer: 0
- m_Name: label_0_44
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1408578610
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1408578609}
- 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: 1406658790}
- - {fileID: 599470178}
- m_Father: {fileID: 894361979}
- m_RootOrder: 44
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1411537614
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1411537615}
- m_Layer: 0
- m_Name: label_0_7
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1411537615
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1411537614}
- 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: 1637035491}
- - {fileID: 1807483168}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 7
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1417916569
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1417916570}
- - component: {fileID: 1417916572}
- - component: {fileID: 1417916571}
- m_Layer: 0
- m_Name: title
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1417916570
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1417916569}
- 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: 1160781940}
- 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: 20.8}
- m_SizeDelta: {x: 1810.51, y: 18}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &1417916571
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1417916569}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 1
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 1
- m_LineSpacing: 1
- m_Text: fps:0
---- !u!222 &1417916572
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1417916569}
---- !u!1 &1418845303
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1418845304}
- - component: {fileID: 1418845306}
- - component: {fileID: 1418845305}
- m_Layer: 0
- m_Name: axis_y2_label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1418845304
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1418845303}
- 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: 820132499}
- m_Father: {fileID: 522121942}
- 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: 400}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1418845305
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1418845303}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1418845306
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1418845303}
---- !u!1 &1421391788
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1421391789}
- - component: {fileID: 1421391791}
- - component: {fileID: 1421391790}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1421391789
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1421391788}
- 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: 1698923728}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1421391790
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1421391788}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1421391791
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1421391788}
---- !u!1 &1424662794
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1424662795}
- - component: {fileID: 1424662797}
- - component: {fileID: 1424662796}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1424662795
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1424662794}
- 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: 1487273069}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1424662796
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1424662794}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1424662797
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1424662794}
---- !u!1 &1425467608
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1425467609}
- - component: {fileID: 1425467611}
- - component: {fileID: 1425467610}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1425467609
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1425467608}
- 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: 128552215}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1425467610
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1425467608}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1425467611
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1425467608}
---- !u!1 &1428336003
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1428336004}
- - component: {fileID: 1428336006}
- - component: {fileID: 1428336005}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1428336004
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1428336003}
- 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: 831969783}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1428336005
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1428336003}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1428336006
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1428336003}
---- !u!1 &1429945400
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1429945401}
- - component: {fileID: 1429945403}
- - component: {fileID: 1429945402}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1429945401
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1429945400}
- 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: 1773915099}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1429945402
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1429945400}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1429945403
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1429945400}
---- !u!1 &1431049260
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1431049261}
- - component: {fileID: 1431049263}
- - component: {fileID: 1431049262}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1431049261
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1431049260}
- 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: 2081478709}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1431049262
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1431049260}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1431049263
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1431049260}
---- !u!1 &1431086153
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1431086154}
- m_Layer: 0
- m_Name: label_0_100
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1431086154
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1431086153}
- 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: 495536889}
- - {fileID: 915125760}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 100
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1431965705
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1431965706}
- - component: {fileID: 1431965708}
- - component: {fileID: 1431965707}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1431965706
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1431965705}
- 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: 64469354}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1431965707
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1431965705}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1431965708
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1431965705}
---- !u!1 &1436921199
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1436921200}
- m_Layer: 0
- m_Name: axis_x2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1436921200
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1436921199}
- 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: 2048466818}
- - {fileID: 678577690}
- - {fileID: 1826243912}
- - {fileID: 312977044}
- - {fileID: 1633054180}
- m_Father: {fileID: 1304222265}
- 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: 1810.51, y: 140}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &1439479563
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1439479564}
- - component: {fileID: 1439479566}
- - component: {fileID: 1439479565}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1439479564
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1439479563}
- 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: 1353610635}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1439479565
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1439479563}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1439479566
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1439479563}
---- !u!1 &1441135000
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1441135001}
- - component: {fileID: 1441135003}
- - component: {fileID: 1441135002}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1441135001
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1441135000}
- 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: 2113880151}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1441135002
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1441135000}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1441135003
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1441135000}
---- !u!1 &1444511879
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1444511880}
- - component: {fileID: 1444511882}
- - component: {fileID: 1444511881}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1444511880
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1444511879}
- 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: 951320941}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1444511881
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1444511879}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1444511882
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1444511879}
---- !u!1 &1449980591
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1449980592}
- - component: {fileID: 1449980594}
- - component: {fileID: 1449980593}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1449980592
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1449980591}
- 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: 977936300}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1449980593
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1449980591}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1449980594
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1449980591}
---- !u!1 &1450717925
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1450717926}
- - component: {fileID: 1450717928}
- - component: {fileID: 1450717927}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1450717926
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1450717925}
- 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: 905482300}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1450717927
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1450717925}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1450717928
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1450717925}
---- !u!1 &1458321884
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1458321885}
- m_Layer: 0
- m_Name: label_0_81
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1458321885
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1458321884}
- 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: 445193239}
- - {fileID: 1346278378}
- m_Father: {fileID: 894361979}
- m_RootOrder: 81
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1460165095
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1460165096}
- - component: {fileID: 1460165098}
- - component: {fileID: 1460165097}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1460165096
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1460165095}
- 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: 428744862}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1460165097
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1460165095}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1460165098
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1460165095}
---- !u!1 &1461105311
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1461105312}
- - component: {fileID: 1461105314}
- - component: {fileID: 1461105313}
- m_Layer: 0
- m_Name: axis_x7
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1461105312
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1461105311}
- 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: 1744434248}
- 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: 1508.7584, y: -147}
- m_SizeDelta: {x: 201.16779, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1461105313
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1461105311}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 13
---- !u!222 &1461105314
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1461105311}
---- !u!1 &1467881648
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1467881649}
- m_Layer: 0
- m_Name: label_0_27
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1467881649
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1467881648}
- 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: 861116685}
- - {fileID: 1904551510}
- m_Father: {fileID: 879012035}
- m_RootOrder: 27
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1467903204
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1467903205}
- - component: {fileID: 1467903207}
- - component: {fileID: 1467903206}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1467903205
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1467903204}
- 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: 352592301}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1467903206
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1467903204}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1467903207
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1467903204}
---- !u!1 &1470695274
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1470695275}
- m_Layer: 0
- m_Name: label_0_32
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1470695275
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1470695274}
- 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: 1579359678}
- - {fileID: 1222274248}
- m_Father: {fileID: 879012035}
- m_RootOrder: 32
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1473540665
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1473540666}
- - component: {fileID: 1473540668}
- - component: {fileID: 1473540667}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1473540666
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1473540665}
- 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: 901098996}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1473540667
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1473540665}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1473540668
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1473540665}
---- !u!1 &1476888615
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1476888616}
- - component: {fileID: 1476888618}
- - component: {fileID: 1476888617}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1476888616
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1476888615}
- 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: 765350349}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1476888617
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1476888615}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1476888618
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1476888615}
---- !u!1 &1477220902
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1477220903}
- m_Layer: 0
- m_Name: label_0_25
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1477220903
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1477220902}
- 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: 987273186}
- - {fileID: 589677632}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 25
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1478283433
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1478283434}
- m_Layer: 0
- m_Name: label_0_34
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1478283434
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1478283433}
- 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: 114988505}
- - {fileID: 489403623}
- m_Father: {fileID: 894361979}
- m_RootOrder: 34
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1480449053
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1480449054}
- - component: {fileID: 1480449056}
- - component: {fileID: 1480449055}
- m_Layer: 0
- m_Name: axis_y21
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1480449054
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1480449053}
- 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: 2065853256}
- 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: 1788, y: 110}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1480449055
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1480449053}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1480449056
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1480449053}
---- !u!1 &1481740288
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1481740289}
- m_Layer: 0
- m_Name: label_0_67
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1481740289
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1481740288}
- 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: 1817550698}
- - {fileID: 1202112592}
- m_Father: {fileID: 879012035}
- m_RootOrder: 67
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1484953021
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1484953022}
- - component: {fileID: 1484953024}
- - component: {fileID: 1484953023}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1484953022
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1484953021}
- 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: 703526690}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1484953023
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1484953021}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1484953024
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1484953021}
---- !u!1 &1487007369
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1487007370}
- m_Layer: 0
- m_Name: label_0_44
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1487007370
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1487007369}
- 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: 200178285}
- - {fileID: 20246527}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 44
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1487168316
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1487168317}
- - component: {fileID: 1487168319}
- - component: {fileID: 1487168318}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1487168317
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1487168316}
- 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: 1664425325}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1487168318
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1487168316}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1487168319
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1487168316}
---- !u!1 &1487273068
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1487273069}
- m_Layer: 0
- m_Name: label_0_98
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1487273069
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1487273068}
- 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: 1424662795}
- - {fileID: 1215537370}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 98
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1493559515
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1493559516}
- m_Layer: 0
- m_Name: label_0_0
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1493559516
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1493559515}
- 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: 577248780}
- - {fileID: 2035354809}
- m_Father: {fileID: 894361979}
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1495841217
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1495841218}
- - component: {fileID: 1495841220}
- - component: {fileID: 1495841219}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1495841218
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1495841217}
- 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: 393892058}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1495841219
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1495841217}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1495841220
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1495841217}
---- !u!1 &1499237569
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1499237570}
- m_Layer: 0
- m_Name: label_0_19
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1499237570
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1499237569}
- 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: 1241607724}
- - {fileID: 675755613}
- m_Father: {fileID: 879012035}
- m_RootOrder: 19
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1499720927
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1499720928}
- m_Layer: 0
- m_Name: label_0_34
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1499720928
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1499720927}
- 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: 1092266850}
- - {fileID: 1612910122}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 34
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1501762529
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1501762530}
- m_Layer: 0
- m_Name: label_0_41
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1501762530
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1501762529}
- 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: 52471512}
- - {fileID: 1406500813}
- m_Father: {fileID: 879012035}
- m_RootOrder: 41
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &1512214224
GameObject:
m_ObjectHideFlags: 0
@@ -54851,511 +49480,6 @@ Transform:
m_Father: {fileID: 0}
m_RootOrder: 3
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &1514252524
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1514252525}
- - component: {fileID: 1514252527}
- - component: {fileID: 1514252526}
- m_Layer: 0
- m_Name: axis_x9
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1514252525
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1514252524}
- 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: 125763605}
- 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: 1780, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1514252526
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1514252524}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:10
---- !u!222 &1514252527
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1514252524}
---- !u!1 &1514968861
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1514968862}
- m_Layer: 0
- m_Name: label_0_6
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1514968862
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1514968861}
- 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: 181903829}
- - {fileID: 1521280742}
- m_Father: {fileID: 894361979}
- m_RootOrder: 6
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1515277975
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1515277976}
- - component: {fileID: 1515277978}
- - component: {fileID: 1515277977}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1515277976
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1515277975}
- 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: 1537830619}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1515277977
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1515277975}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1515277978
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1515277975}
---- !u!1 &1516299828
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1516299829}
- - component: {fileID: 1516299831}
- - component: {fileID: 1516299830}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1516299829
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1516299828}
- 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: 2003469503}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1516299830
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1516299828}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1516299831
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1516299828}
---- !u!1 &1519953226
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1519953227}
- - component: {fileID: 1519953229}
- - component: {fileID: 1519953228}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1519953227
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519953226}
- 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: 716622152}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1519953228
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519953226}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1519953229
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1519953226}
---- !u!1 &1521280741
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1521280742}
- - component: {fileID: 1521280744}
- - component: {fileID: 1521280743}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1521280742
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1521280741}
- 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: 1514968862}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1521280743
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1521280741}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1521280744
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1521280741}
---- !u!1 &1526026444
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1526026445}
- - component: {fileID: 1526026447}
- - component: {fileID: 1526026446}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1526026445
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1526026444}
- 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: 904367111}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1526026446
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1526026444}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1526026447
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1526026444}
---- !u!1 &1527990581
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1527990582}
- m_Layer: 0
- m_Name: axis_y2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1527990582
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1527990581}
- 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: 985907218}
- - {fileID: 890477518}
- - {fileID: 502366386}
- - {fileID: 948643652}
- - {fileID: 1288200957}
- m_Father: {fileID: 1304222265}
- 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: 1810.51, y: 140}
- m_Pivot: {x: 0, y: 1}
--- !u!1 &1530743175
GameObject:
m_ObjectHideFlags: 0
@@ -55490,7737 +49614,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1530743175}
---- !u!1 &1530832188
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1530832189}
- - component: {fileID: 1530832191}
- - component: {fileID: 1530832190}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1530832189
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1530832188}
- 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: 1697835705}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1530832190
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1530832188}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1530832191
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1530832188}
---- !u!1 &1531874592
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1531874593}
- m_Layer: 0
- m_Name: label_0_88
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1531874593
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1531874592}
- 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: 78468304}
- - {fileID: 1930866785}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 88
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1537830618
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1537830619}
- m_Layer: 0
- m_Name: label_0_42
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1537830619
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1537830618}
- 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: 924691599}
- - {fileID: 1515277976}
- m_Father: {fileID: 879012035}
- m_RootOrder: 42
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1542518336
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1542518337}
- m_Layer: 0
- m_Name: label_0_76
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1542518337
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1542518336}
- 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: 326485682}
- - {fileID: 1379273305}
- m_Father: {fileID: 894361979}
- m_RootOrder: 76
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1548444501
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1548444502}
- - component: {fileID: 1548444504}
- - component: {fileID: 1548444503}
- m_Layer: 0
- m_Name: axis_y24
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1548444502
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1548444501}
- 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: 2065853256}
- 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: 1788, y: 350}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1548444503
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1548444501}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1548444504
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1548444501}
---- !u!1 &1548533467
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1548533468}
- - component: {fileID: 1548533470}
- - component: {fileID: 1548533469}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1548533468
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1548533467}
- 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: 1702391192}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1548533469
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1548533467}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1548533470
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1548533467}
---- !u!1 &1550488559
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1550488560}
- m_Layer: 0
- m_Name: label_0_86
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1550488560
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1550488559}
- 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: 393212494}
- - {fileID: 55356785}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 86
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1551885300
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1551885301}
- - component: {fileID: 1551885303}
- - component: {fileID: 1551885302}
- 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 &1551885301
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1551885300}
- 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: 483705007}
- m_Father: {fileID: 522121942}
- 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: 400}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1551885302
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1551885300}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1551885303
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1551885300}
---- !u!1 &1552666788
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1552666789}
- - component: {fileID: 1552666791}
- - component: {fileID: 1552666790}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1552666789
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1552666788}
- 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: 1075455951}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1552666790
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1552666788}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1552666791
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1552666788}
---- !u!1 &1555012670
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1555012671}
- - component: {fileID: 1555012673}
- - component: {fileID: 1555012672}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1555012671
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1555012670}
- 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: 717382625}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1555012672
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1555012670}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1555012673
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1555012670}
---- !u!1 &1555412951
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1555412952}
- - component: {fileID: 1555412954}
- - component: {fileID: 1555412953}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1555412952
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1555412951}
- 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: 71017291}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1555412953
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1555412951}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1555412954
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1555412951}
---- !u!1 &1555588424
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1555588425}
- - component: {fileID: 1555588427}
- - component: {fileID: 1555588426}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1555588425
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1555588424}
- 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: 2130517366}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1555588426
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1555588424}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1555588427
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1555588424}
---- !u!1 &1556433157
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1556433158}
- - component: {fileID: 1556433160}
- - component: {fileID: 1556433159}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1556433158
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1556433157}
- 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: 692382225}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1556433159
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1556433157}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1556433160
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1556433157}
---- !u!1 &1559823616
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1559823617}
- - component: {fileID: 1559823619}
- - component: {fileID: 1559823618}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1559823617
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1559823616}
- 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: 386895853}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1559823618
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1559823616}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1559823619
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1559823616}
---- !u!1 &1562459529
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1562459530}
- - component: {fileID: 1562459532}
- - component: {fileID: 1562459531}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1562459530
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1562459529}
- 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: 1897867278}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1562459531
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1562459529}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1562459532
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1562459529}
---- !u!1 &1563126967
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1563126968}
- - component: {fileID: 1563126970}
- - component: {fileID: 1563126969}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1563126968
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1563126967}
- 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: 85211886}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1563126969
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1563126967}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1563126970
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1563126967}
---- !u!1 &1564080918
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1564080919}
- m_Layer: 0
- m_Name: label_0_62
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1564080919
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1564080918}
- 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: 1807578338}
- - {fileID: 751093333}
- m_Father: {fileID: 894361979}
- m_RootOrder: 62
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1565637804
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1565637805}
- m_Layer: 0
- m_Name: label_0_73
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1565637805
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1565637804}
- 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: 364364321}
- - {fileID: 571940763}
- m_Father: {fileID: 879012035}
- m_RootOrder: 73
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1567089093
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1567089094}
- - component: {fileID: 1567089096}
- - component: {fileID: 1567089095}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1567089094
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1567089093}
- 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: 1966190624}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1567089095
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1567089093}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1567089096
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1567089093}
---- !u!1 &1569041838
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1569041839}
- - component: {fileID: 1569041841}
- - component: {fileID: 1569041840}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1569041839
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1569041838}
- 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: 1825428796}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1569041840
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1569041838}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1569041841
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1569041838}
---- !u!1 &1570042024
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1570042025}
- m_Layer: 0
- m_Name: label_0_49
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1570042025
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1570042024}
- 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: 475512764}
- - {fileID: 1844208167}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 49
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1571507638
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1571507639}
- - component: {fileID: 1571507641}
- - component: {fileID: 1571507640}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1571507639
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1571507638}
- 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: 665141036}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1571507640
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1571507638}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1571507641
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1571507638}
---- !u!1 &1572070799
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1572070800}
- - component: {fileID: 1572070802}
- - component: {fileID: 1572070801}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1572070800
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1572070799}
- 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: 827305501}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1572070801
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1572070799}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1572070802
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1572070799}
---- !u!1 &1572942360
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1572942361}
- - component: {fileID: 1572942363}
- - component: {fileID: 1572942362}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1572942361
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1572942360}
- 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: 17612909}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1572942362
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1572942360}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1572942363
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1572942360}
---- !u!1 &1573009592
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1573009593}
- - component: {fileID: 1573009595}
- - component: {fileID: 1573009594}
- 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 &1573009593
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1573009592}
- 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: 554873560}
- 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 &1573009594
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1573009592}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1573009595
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1573009592}
---- !u!1 &1575534659
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1575534660}
- - component: {fileID: 1575534662}
- - component: {fileID: 1575534661}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1575534660
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1575534659}
- 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: 609515172}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1575534661
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1575534659}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1575534662
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1575534659}
---- !u!1 &1578851008
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1578851009}
- - component: {fileID: 1578851011}
- - component: {fileID: 1578851010}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1578851009
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1578851008}
- 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: 2017736213}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1578851010
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1578851008}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1578851011
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1578851008}
---- !u!1 &1579359677
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1579359678}
- - component: {fileID: 1579359680}
- - component: {fileID: 1579359679}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1579359678
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1579359677}
- 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: 1470695275}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1579359679
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1579359677}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1579359680
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1579359677}
---- !u!1 &1580788633
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1580788634}
- - component: {fileID: 1580788636}
- - component: {fileID: 1580788635}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1580788634
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1580788633}
- 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: 133567236}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1580788635
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1580788633}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1580788636
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1580788633}
---- !u!1 &1582586611
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1582586612}
- m_Layer: 0
- m_Name: label_0_66
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1582586612
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1582586611}
- 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: 1738402728}
- - {fileID: 737924633}
- m_Father: {fileID: 894361979}
- m_RootOrder: 66
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1585454232
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1585454233}
- - component: {fileID: 1585454235}
- - component: {fileID: 1585454234}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1585454233
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1585454232}
- 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: 2013350463}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1585454234
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1585454232}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1585454235
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1585454232}
---- !u!1 &1585476236
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1585476237}
- - component: {fileID: 1585476239}
- - component: {fileID: 1585476238}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1585476237
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1585476236}
- 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: 1608253157}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1585476238
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1585476236}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1585476239
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1585476236}
---- !u!1 &1586011818
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1586011819}
- m_Layer: 0
- m_Name: label_0_89
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1586011819
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1586011818}
- 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: 104753108}
- - {fileID: 2135315467}
- m_Father: {fileID: 894361979}
- m_RootOrder: 89
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1587374933
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1587374934}
- - component: {fileID: 1587374936}
- - component: {fileID: 1587374935}
- m_Layer: 0
- m_Name: axis_y22
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1587374934
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1587374933}
- 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: 366324264}
- 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: 1788, y: 190}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1587374935
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1587374933}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1587374936
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1587374933}
---- !u!1 &1589619010
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1589619011}
- m_Layer: 0
- m_Name: label_0_27
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1589619011
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1589619010}
- 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: 268461702}
- - {fileID: 358606464}
- m_Father: {fileID: 894361979}
- m_RootOrder: 27
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1590697440
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1590697441}
- - component: {fileID: 1590697443}
- - component: {fileID: 1590697442}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1590697441
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1590697440}
- 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: 2056459224}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1590697442
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1590697440}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1590697443
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1590697440}
---- !u!1 &1592038751
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1592038752}
- m_Layer: 0
- m_Name: label_0_85
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1592038752
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1592038751}
- 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: 921822295}
- - {fileID: 1353774110}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 85
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1592998324
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1592998325}
- - component: {fileID: 1592998327}
- - component: {fileID: 1592998326}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1592998325
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1592998324}
- 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: 178036851}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1592998326
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1592998324}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1592998327
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1592998324}
---- !u!1 &1594535320
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1594535321}
- - component: {fileID: 1594535323}
- - component: {fileID: 1594535322}
- m_Layer: 0
- m_Name: axis_x9
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1594535321
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1594535320}
- 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: 1744434248}
- 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: 1911.0939, y: -147}
- m_SizeDelta: {x: 201.16779, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1594535322
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1594535320}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 17
---- !u!222 &1594535323
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1594535320}
---- !u!1 &1597450712
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1597450713}
- - component: {fileID: 1597450715}
- - component: {fileID: 1597450714}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1597450713
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1597450712}
- 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: 911241396}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1597450714
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1597450712}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1597450715
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1597450712}
---- !u!1 &1599560251
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1599560252}
- - component: {fileID: 1599560254}
- - component: {fileID: 1599560253}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1599560252
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1599560251}
- 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: 395864209}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1599560253
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1599560251}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1599560254
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1599560251}
---- !u!1 &1601848423
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1601848424}
- - component: {fileID: 1601848426}
- - component: {fileID: 1601848425}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1601848424
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1601848423}
- 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: 1292924290}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1601848425
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1601848423}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1601848426
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1601848423}
---- !u!1 &1602779616
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1602779617}
- - component: {fileID: 1602779619}
- - component: {fileID: 1602779618}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1602779617
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1602779616}
- 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: 973109456}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1602779618
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1602779616}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1602779619
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1602779616}
---- !u!1 &1607474591
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1607474592}
- - component: {fileID: 1607474594}
- - component: {fileID: 1607474593}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1607474592
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1607474591}
- 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: 42712329}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1607474593
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1607474591}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1607474594
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1607474591}
---- !u!1 &1608253156
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1608253157}
- m_Layer: 0
- m_Name: label_0_55
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1608253157
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1608253156}
- 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: 1585476237}
- - {fileID: 573783756}
- m_Father: {fileID: 879012035}
- m_RootOrder: 55
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1609256324
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1609256325}
- - component: {fileID: 1609256327}
- - component: {fileID: 1609256326}
- m_Layer: 0
- m_Name: axis_y20
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1609256325
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1609256324}
- 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: 2065853256}
- 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: 1788, y: 30}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1609256326
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1609256324}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1609256327
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1609256324}
---- !u!1 &1609485787
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1609485788}
- - component: {fileID: 1609485790}
- - component: {fileID: 1609485789}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1609485788
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1609485787}
- 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: 24760535}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1609485789
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1609485787}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1609485790
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1609485787}
---- !u!1 &1611709776
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1611709777}
- - component: {fileID: 1611709779}
- - component: {fileID: 1611709778}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1611709777
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1611709776}
- 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: 1682346598}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1611709778
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1611709776}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1611709779
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1611709776}
---- !u!1 &1612537613
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1612537614}
- - component: {fileID: 1612537616}
- - component: {fileID: 1612537615}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1612537614
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612537613}
- 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: 423381752}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1612537615
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612537613}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1612537616
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612537613}
---- !u!1 &1612696013
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1612696014}
- - component: {fileID: 1612696016}
- - component: {fileID: 1612696015}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1612696014
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612696013}
- 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: 640729150}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1612696015
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612696013}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1612696016
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612696013}
---- !u!1 &1612862145
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1612862146}
- m_Layer: 0
- m_Name: label_0_20
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1612862146
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612862145}
- 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: 94555552}
- - {fileID: 82630935}
- m_Father: {fileID: 879012035}
- m_RootOrder: 20
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1612910121
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1612910122}
- - component: {fileID: 1612910124}
- - component: {fileID: 1612910123}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1612910122
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612910121}
- 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: 1499720928}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1612910123
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612910121}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1612910124
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1612910121}
---- !u!1 &1620388687
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1620388688}
- - component: {fileID: 1620388690}
- - component: {fileID: 1620388689}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1620388688
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1620388687}
- 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: 1379246024}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1620388689
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1620388687}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1620388690
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1620388687}
---- !u!1 &1621717014
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1621717015}
- - component: {fileID: 1621717017}
- - component: {fileID: 1621717016}
- m_Layer: 0
- m_Name: axis_x7
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1621717015
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1621717014}
- 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: 125763605}
- 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: 1434, y: -387}
- m_SizeDelta: {x: 173, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1621717016
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1621717014}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:08
---- !u!222 &1621717017
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1621717014}
---- !u!1 &1622283843
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1622283844}
- - component: {fileID: 1622283846}
- - component: {fileID: 1622283845}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1622283844
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1622283843}
- 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: 24760535}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1622283845
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1622283843}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1622283846
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1622283843}
---- !u!1 &1624279025
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1624279026}
- - component: {fileID: 1624279028}
- - component: {fileID: 1624279027}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1624279026
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1624279025}
- 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: 128228061}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1624279027
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1624279025}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1624279028
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1624279025}
---- !u!1 &1624427529
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1624427530}
- m_Layer: 0
- m_Name: label_0_52
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1624427530
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1624427529}
- 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: 36035194}
- - {fileID: 561691084}
- m_Father: {fileID: 894361979}
- m_RootOrder: 52
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1629162874
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1629162875}
- - component: {fileID: 1629162877}
- - component: {fileID: 1629162876}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1629162875
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1629162874}
- 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: 1750545933}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1629162876
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1629162874}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1629162877
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1629162874}
---- !u!1 &1633005460
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1633005461}
- - component: {fileID: 1633005463}
- - component: {fileID: 1633005462}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1633005461
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1633005460}
- 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: 79083272}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1633005462
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1633005460}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1633005463
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1633005460}
---- !u!1 &1633054179
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1633054180}
- - component: {fileID: 1633054182}
- - component: {fileID: 1633054181}
- m_Layer: 0
- m_Name: axis_x24
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1633054180
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1633054179}
- 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: 1436921200}
- 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: 1810.51, y: 7}
- m_SizeDelta: {x: 362.102, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1633054181
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1633054179}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1633054182
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1633054179}
---- !u!1 &1633117996
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1633117997}
- 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 &1633117997
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1633117996}
- 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: 263579241}
- - {fileID: 2065002812}
- - {fileID: 694304537}
- - {fileID: 1291249604}
- - {fileID: 1836262654}
- m_Father: {fileID: 237605830}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &1635426884
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1635426885}
- - component: {fileID: 1635426887}
- - component: {fileID: 1635426886}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1635426885
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1635426884}
- 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: 2138665633}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1635426886
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1635426884}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1635426887
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1635426884}
---- !u!1 &1637035490
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1637035491}
- - component: {fileID: 1637035493}
- - component: {fileID: 1637035492}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1637035491
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1637035490}
- 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: 1411537615}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1637035492
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1637035490}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1637035493
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1637035490}
---- !u!1 &1637167924
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1637167925}
- - component: {fileID: 1637167927}
- - component: {fileID: 1637167926}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1637167925
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1637167924}
- 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: 38184951}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1637167926
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1637167924}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1637167927
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1637167924}
---- !u!1 &1637345740
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1637345741}
- - component: {fileID: 1637345743}
- - component: {fileID: 1637345742}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1637345741
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1637345740}
- 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: 614107540}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1637345742
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1637345740}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1637345743
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1637345740}
---- !u!1 &1638820064
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1638820065}
- m_Layer: 0
- m_Name: label_0_52
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1638820065
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1638820064}
- 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: 676330748}
- - {fileID: 437145757}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 52
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1640161966
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1640161967}
- m_Layer: 0
- m_Name: label_0_7
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1640161967
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1640161966}
- 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: 678326755}
- - {fileID: 754238367}
- m_Father: {fileID: 879012035}
- m_RootOrder: 7
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1646263904
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1646263905}
- - component: {fileID: 1646263907}
- - component: {fileID: 1646263906}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1646263905
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1646263904}
- 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: 327258025}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1646263906
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1646263904}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1646263907
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1646263904}
---- !u!1 &1647535671
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1647535672}
- - component: {fileID: 1647535674}
- - component: {fileID: 1647535673}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1647535672
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1647535671}
- 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: 543791267}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1647535673
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1647535671}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1647535674
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1647535671}
---- !u!1 &1649640837
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1649640838}
- - component: {fileID: 1649640840}
- - component: {fileID: 1649640839}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1649640838
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1649640837}
- 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: 198420910}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1649640839
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1649640837}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1649640840
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1649640837}
---- !u!1 &1655009723
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1655009724}
- - component: {fileID: 1655009726}
- - component: {fileID: 1655009725}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1655009724
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1655009723}
- 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: 46968580}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1655009725
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1655009723}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1655009726
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1655009723}
---- !u!1 &1656275547
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1656275548}
- m_Layer: 0
- m_Name: label_0_75
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1656275548
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1656275547}
- 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: 1232731133}
- - {fileID: 77602662}
- m_Father: {fileID: 879012035}
- m_RootOrder: 75
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1657027379
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1657027380}
- - component: {fileID: 1657027382}
- - component: {fileID: 1657027381}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1657027380
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1657027379}
- 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: 665141036}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1657027381
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1657027379}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1657027382
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1657027379}
---- !u!1 &1658634694
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1658634695}
- - component: {fileID: 1658634697}
- - component: {fileID: 1658634696}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1658634695
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1658634694}
- 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: 474297828}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1658634696
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1658634694}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1658634697
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1658634694}
---- !u!1 &1661579450
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1661579451}
- - component: {fileID: 1661579453}
- - component: {fileID: 1661579452}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1661579451
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1661579450}
- 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: 762986490}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1661579452
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1661579450}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1661579453
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1661579450}
---- !u!1 &1662163358
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1662163359}
- - component: {fileID: 1662163361}
- - component: {fileID: 1662163360}
- 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 &1662163359
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1662163358}
- 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: 247028392}
- 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: -8, y: 100}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1662163360
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1662163358}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 9
---- !u!222 &1662163361
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1662163358}
---- !u!1 &1664188493
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1664188494}
- - component: {fileID: 1664188496}
- - component: {fileID: 1664188495}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1664188494
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1664188493}
- 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: 569155130}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1664188495
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1664188493}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1664188496
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1664188493}
---- !u!1 &1664425324
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1664425325}
- m_Layer: 0
- m_Name: label_0_60
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1664425325
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1664425324}
- 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: 2082024833}
- - {fileID: 1487168317}
- m_Father: {fileID: 879012035}
- m_RootOrder: 60
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1664562836
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1664562837}
- - component: {fileID: 1664562839}
- - component: {fileID: 1664562838}
- m_Layer: 0
- m_Name: title_sub
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1664562837
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1664562836}
- 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: 2093877498}
- 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: 1810, y: 14}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &1664562838
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1664562836}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- m_FontData:
- m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
- m_FontSize: 14
- 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 &1664562839
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1664562836}
---- !u!1 &1665401775
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1665401776}
- - component: {fileID: 1665401778}
- - component: {fileID: 1665401777}
- 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 &1665401776
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1665401775}
- 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: 1744434248}
- 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: 1131.5687, y: -147}
- m_SizeDelta: {x: 452.6275, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1665401777
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1665401775}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1665401778
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1665401775}
---- !u!1 &1665516829
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1665516830}
- m_Layer: 0
- m_Name: label_0_62
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1665516830
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1665516829}
- 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: 2057179142}
- - {fileID: 1971827773}
- m_Father: {fileID: 879012035}
- m_RootOrder: 62
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1665535850
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1665535851}
- m_Layer: 0
- m_Name: label_0_25
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1665535851
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1665535850}
- 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: 814075981}
- - {fileID: 988415276}
- m_Father: {fileID: 894361979}
- m_RootOrder: 25
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1667754946
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1667754947}
- - component: {fileID: 1667754949}
- - component: {fileID: 1667754948}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1667754947
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1667754946}
- 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: 1064777813}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1667754948
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1667754946}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1667754949
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1667754946}
---- !u!1 &1669373130
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1669373131}
- - component: {fileID: 1669373133}
- - component: {fileID: 1669373132}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1669373131
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1669373130}
- 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: 2003469503}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1669373132
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1669373130}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1669373133
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1669373130}
---- !u!1 &1669663546
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1669663547}
- - component: {fileID: 1669663549}
- - component: {fileID: 1669663548}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1669663547
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1669663546}
- 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: 350116618}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1669663548
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1669663546}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1669663549
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1669663546}
---- !u!1 &1670280251
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1670280252}
- - component: {fileID: 1670280254}
- - component: {fileID: 1670280253}
- 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 &1670280252
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1670280251}
- 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: 125763605}
- 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: 1434, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1670280253
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1670280251}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:15
---- !u!222 &1670280254
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1670280251}
---- !u!1 &1671388735
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1671388736}
- m_Layer: 0
- m_Name: label_0_9
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1671388736
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1671388735}
- 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: 1130696536}
- - {fileID: 946820388}
- m_Father: {fileID: 894361979}
- m_RootOrder: 9
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1672963401
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1672963402}
- - component: {fileID: 1672963404}
- - component: {fileID: 1672963403}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1672963402
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1672963401}
- 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: 327258025}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1672963403
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1672963401}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1672963404
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1672963401}
---- !u!1 &1674777669
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1674777670}
- - component: {fileID: 1674777672}
- - component: {fileID: 1674777671}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1674777670
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1674777669}
- 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: 1923964892}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1674777671
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1674777669}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1674777672
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1674777669}
---- !u!1 &1681206411
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1681206412}
- m_Layer: 0
- m_Name: label_0_71
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1681206412
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1681206411}
- 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: 1016859957}
- - {fileID: 2003011225}
- m_Father: {fileID: 879012035}
- m_RootOrder: 71
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1682346597
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1682346598}
- m_Layer: 0
- m_Name: label_0_23
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1682346598
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1682346597}
- 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: 1611709777}
- - {fileID: 539251176}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 23
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1684101256
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1684101257}
- - component: {fileID: 1684101259}
- - component: {fileID: 1684101258}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1684101257
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1684101256}
- 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: 298128255}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1684101258
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1684101256}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1684101259
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1684101256}
---- !u!1 &1688280436
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1688280437}
- - component: {fileID: 1688280439}
- - component: {fileID: 1688280438}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1688280437
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1688280436}
- 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: 551855691}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1688280438
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1688280436}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1688280439
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1688280436}
---- !u!1 &1689934656
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1689934657}
- - component: {fileID: 1689934659}
- - component: {fileID: 1689934658}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1689934657
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1689934656}
- 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: 2005945473}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1689934658
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1689934656}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1689934659
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1689934656}
---- !u!1 &1691230797
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1691230798}
- - component: {fileID: 1691230800}
- - component: {fileID: 1691230799}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1691230798
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1691230797}
- 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: 1261862974}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1691230799
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1691230797}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1691230800
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1691230797}
---- !u!1 &1697835704
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1697835705}
- m_Layer: 0
- m_Name: label_0_44
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1697835705
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1697835704}
- 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: 1530832189}
- - {fileID: 1298259780}
- m_Father: {fileID: 879012035}
- m_RootOrder: 44
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1698923727
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1698923728}
- m_Layer: 0
- m_Name: label_0_66
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1698923728
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1698923727}
- 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: 632154565}
- - {fileID: 1421391789}
- m_Father: {fileID: 879012035}
- m_RootOrder: 66
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1701119396
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1701119397}
- m_Layer: 0
- m_Name: label_0_54
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1701119397
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1701119396}
- 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: 180921878}
- - {fileID: 19143993}
- m_Father: {fileID: 894361979}
- m_RootOrder: 54
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1701225151
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1701225152}
- - component: {fileID: 1701225154}
- - component: {fileID: 1701225153}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1701225152
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1701225151}
- 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: 561594144}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1701225153
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1701225151}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1701225154
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1701225151}
---- !u!1 &1702391191
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1702391192}
- m_Layer: 0
- m_Name: label_0_19
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1702391192
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1702391191}
- 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: 1355490834}
- - {fileID: 1548533468}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 19
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1712144603
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1712144604}
- - component: {fileID: 1712144606}
- - component: {fileID: 1712144605}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1712144604
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1712144603}
- 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: 627627440}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1712144605
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1712144603}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1712144606
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1712144603}
---- !u!1 &1713024663
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1713024664}
- - component: {fileID: 1713024666}
- - component: {fileID: 1713024665}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1713024664
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1713024663}
- 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: 521225946}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1713024665
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1713024663}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1713024666
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1713024663}
---- !u!1 &1713124873
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1713124874}
- - component: {fileID: 1713124876}
- - component: {fileID: 1713124875}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1713124874
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1713124873}
- 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: 20866331}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1713124875
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1713124873}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1713124876
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1713124873}
---- !u!1 &1715653983
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1715653984}
- m_Layer: 0
- m_Name: datazoom
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1715653984
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1715653983}
- 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: 792327026}
- - {fileID: 618912365}
- m_Father: {fileID: 1304222265}
- 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: 1810.51, y: 140}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &1717650138
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1717650139}
- - component: {fileID: 1717650141}
- - component: {fileID: 1717650140}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1717650139
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1717650138}
- 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: 562485111}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1717650140
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1717650138}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1717650141
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1717650138}
---- !u!1 &1719438463
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1719438464}
- - component: {fileID: 1719438466}
- - component: {fileID: 1719438465}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1719438464
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1719438463}
- 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: 937050842}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1719438465
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1719438463}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1719438466
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1719438463}
---- !u!1 &1720947331
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1720947332}
- - component: {fileID: 1720947334}
- - component: {fileID: 1720947333}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1720947332
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1720947331}
- 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: 1931138811}
- 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 &1720947333
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1720947331}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1720947334
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1720947331}
---- !u!1 &1721764752
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1721764753}
- m_Layer: 0
- m_Name: label_0_72
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1721764753
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1721764752}
- 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: 711551092}
- - {fileID: 1945731927}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 72
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1722430879
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1722430880}
- - component: {fileID: 1722430882}
- - component: {fileID: 1722430881}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1722430880
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1722430879}
- 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: 705325804}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1722430881
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1722430879}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1722430882
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1722430879}
---- !u!1 &1723485875
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1723485876}
- m_Layer: 0
- m_Name: label_0_28
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1723485876
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1723485875}
- 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: 205332105}
- - {fileID: 339396045}
- m_Father: {fileID: 879012035}
- m_RootOrder: 28
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1729560235
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1729560236}
- - component: {fileID: 1729560238}
- - component: {fileID: 1729560237}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1729560236
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1729560235}
- 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: 2081478709}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1729560237
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1729560235}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1729560238
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1729560235}
---- !u!1 &1734584290
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1734584291}
- - component: {fileID: 1734584293}
- - component: {fileID: 1734584292}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1734584291
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1734584290}
- 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: 1052391765}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1734584292
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1734584290}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1734584293
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1734584290}
---- !u!1 &1735388677
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1735388678}
- - component: {fileID: 1735388680}
- - component: {fileID: 1735388679}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1735388678
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1735388677}
- 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: 1779414254}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1735388679
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1735388677}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1735388680
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1735388677}
---- !u!1 &1737552679
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1737552680}
- - component: {fileID: 1737552682}
- - component: {fileID: 1737552681}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1737552680
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1737552679}
- 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: 901098996}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1737552681
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1737552679}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1737552682
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1737552679}
---- !u!1 &1738171051
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1738171052}
- m_Layer: 0
- m_Name: label_0_63
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1738171052
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1738171051}
- 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: 960757972}
- - {fileID: 397608102}
- m_Father: {fileID: 879012035}
- m_RootOrder: 63
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1738402727
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1738402728}
- - component: {fileID: 1738402730}
- - component: {fileID: 1738402729}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1738402728
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1738402727}
- 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: 1582586612}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1738402729
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1738402727}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1738402730
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1738402727}
---- !u!1 &1741509474
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1741509475}
- - component: {fileID: 1741509477}
- - component: {fileID: 1741509476}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1741509475
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1741509474}
- 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: 198621908}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1741509476
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1741509474}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1741509477
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1741509474}
---- !u!1 &1741927049
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1741927050}
- - component: {fileID: 1741927052}
- - component: {fileID: 1741927051}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1741927050
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1741927049}
- 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: 292358546}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1741927051
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1741927049}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1741927052
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1741927049}
---- !u!1 &1742076090
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1742076091}
- - component: {fileID: 1742076093}
- - component: {fileID: 1742076092}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1742076091
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1742076090}
- 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: 280618040}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1742076092
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1742076090}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1742076093
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1742076090}
---- !u!1 &1743695886
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1743695887}
- m_Layer: 0
- m_Name: label_0_6
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1743695887
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1743695886}
- 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: 527069757}
- - {fileID: 349519169}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 6
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1744434247
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1744434248}
- m_Layer: 0
- m_Name: axis_x
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1744434248
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1744434247}
- 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: 695994817}
- - {fileID: 460461182}
- - {fileID: 1665401776}
- - {fileID: 1368652556}
- - {fileID: 1810578146}
- - {fileID: 240872503}
- - {fileID: 79128406}
- - {fileID: 1461105312}
- - {fileID: 2109732581}
- - {fileID: 1594535321}
- m_Father: {fileID: 1304222265}
- 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: 1810.51, y: 140}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &1745328374
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1745328375}
- - component: {fileID: 1745328377}
- - component: {fileID: 1745328376}
- 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 &1745328375
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1745328374}
- 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: 607005197}
- 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: 396, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1745328376
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1745328374}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:03
---- !u!222 &1745328377
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1745328374}
---- !u!1 &1750545932
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1750545933}
- m_Layer: 0
- m_Name: label_0_67
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1750545933
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1750545932}
- 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: 1629162875}
- - {fileID: 750523075}
- m_Father: {fileID: 894361979}
- m_RootOrder: 67
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1753573078
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1753573079}
- - component: {fileID: 1753573081}
- - component: {fileID: 1753573080}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1753573079
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1753573078}
- 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: 85211886}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1753573080
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1753573078}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1753573081
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1753573078}
---- !u!1 &1755427948
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1755427949}
- - component: {fileID: 1755427951}
- - component: {fileID: 1755427950}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1755427949
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1755427948}
- 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: 795316464}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1755427950
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1755427948}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1755427951
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1755427948}
---- !u!1 &1756818232
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1756818233}
- - component: {fileID: 1756818235}
- - component: {fileID: 1756818234}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1756818233
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1756818232}
- 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: 719820349}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1756818234
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1756818232}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1756818235
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1756818232}
--- !u!1 &1758969260
GameObject:
m_ObjectHideFlags: 0
@@ -63355,650 +49748,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1758969260}
---- !u!1 &1759583628
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1759583629}
- m_Layer: 0
- m_Name: label_0_21
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1759583629
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1759583628}
- 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: 727393762}
- - {fileID: 1202014622}
- m_Father: {fileID: 894361979}
- m_RootOrder: 21
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1770096152
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1770096153}
- - component: {fileID: 1770096155}
- - component: {fileID: 1770096154}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1770096153
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1770096152}
- 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: 1275666645}
- 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 &1770096154
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1770096152}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1770096155
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1770096152}
---- !u!1 &1773915098
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1773915099}
- m_Layer: 0
- m_Name: label_0_92
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1773915099
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1773915098}
- 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: 1429945401}
- - {fileID: 204145895}
- m_Father: {fileID: 894361979}
- m_RootOrder: 92
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1774949520
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1774949521}
- m_Layer: 0
- m_Name: label_0_31
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1774949521
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1774949520}
- 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: 801356321}
- - {fileID: 887378992}
- m_Father: {fileID: 879012035}
- m_RootOrder: 31
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1776292139
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1776292140}
- - component: {fileID: 1776292142}
- - component: {fileID: 1776292141}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1776292140
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1776292139}
- 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: 703526690}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1776292141
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1776292139}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1776292142
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1776292139}
---- !u!1 &1778387276
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1778387277}
- - component: {fileID: 1778387279}
- - component: {fileID: 1778387278}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1778387277
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1778387276}
- 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: 1062304335}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1778387278
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1778387276}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1778387279
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1778387276}
---- !u!1 &1779414253
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1779414254}
- m_Layer: 0
- m_Name: label_0_29
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1779414254
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1779414253}
- 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: 596196481}
- - {fileID: 1735388678}
- m_Father: {fileID: 879012035}
- m_RootOrder: 29
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1781073866
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1781073867}
- - component: {fileID: 1781073869}
- - component: {fileID: 1781073868}
- m_Layer: 0
- m_Name: axis_y7
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1781073867
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1781073866}
- 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: 247028392}
- m_RootOrder: 7
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
- m_AnchorMin: {x: 0, y: 0}
- m_AnchorMax: {x: 0, y: 0}
- m_AnchoredPosition: {x: 42.17, y: 126.25001}
- m_SizeDelta: {x: 50.17, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1781073868
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1781073866}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1781073869
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1781073866}
---- !u!1 &1794847667
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1794847668}
- m_Layer: 0
- m_Name: label_0_65
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1794847668
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1794847667}
- 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: 550636965}
- - {fileID: 826726904}
- m_Father: {fileID: 879012035}
- m_RootOrder: 65
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1798970095
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1798970096}
- m_Layer: 0
- m_Name: label_0_15
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1798970096
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1798970095}
- 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: 749966942}
- - {fileID: 1111485109}
- m_Father: {fileID: 894361979}
- m_RootOrder: 15
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1799964333
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1799964334}
- m_Layer: 0
- m_Name: label_0_9
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1799964334
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1799964333}
- 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: 1947109901}
- - {fileID: 1268816446}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 9
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1802200443
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1802200444}
- - component: {fileID: 1802200446}
- - component: {fileID: 1802200445}
- 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 &1802200444
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1802200443}
- 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: 125763605}
- 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: 1780, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1802200445
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1802200443}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:19
---- !u!222 &1802200446
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1802200443}
---- !u!1 &1803105630
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1803105631}
- m_Layer: 0
- m_Name: label_0_37
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1803105631
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1803105630}
- 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: 1140522105}
- - {fileID: 22725947}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 37
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &1807457629
GameObject:
m_ObjectHideFlags: 0
@@ -64093,967 +49842,6 @@ RectTransform:
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0, y: 0}
---- !u!1 &1807483167
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1807483168}
- - component: {fileID: 1807483170}
- - component: {fileID: 1807483169}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1807483168
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1807483167}
- 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: 1411537615}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1807483169
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1807483167}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1807483170
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1807483167}
---- !u!1 &1807578337
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1807578338}
- - component: {fileID: 1807578340}
- - component: {fileID: 1807578339}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1807578338
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1807578337}
- 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: 1564080919}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1807578339
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1807578337}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1807578340
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1807578337}
---- !u!1 &1807979964
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1807979965}
- - component: {fileID: 1807979967}
- - component: {fileID: 1807979966}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1807979965
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1807979964}
- 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: 906661467}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1807979966
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1807979964}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1807979967
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1807979964}
---- !u!1 &1808054299
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1808054300}
- - component: {fileID: 1808054302}
- - component: {fileID: 1808054301}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1808054300
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1808054299}
- 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: 2124189020}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1808054301
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1808054299}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1808054302
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1808054299}
---- !u!1 &1808317386
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1808317387}
- m_Layer: 0
- m_Name: label_0_35
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1808317387
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1808317386}
- 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: 500213284}
- - {fileID: 525847022}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 35
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1810578145
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1810578146}
- - component: {fileID: 1810578148}
- - component: {fileID: 1810578147}
- 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 &1810578146
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1810578145}
- 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: 1744434248}
- 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: 2036.8237, y: -147}
- m_SizeDelta: {x: 452.6275, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1810578147
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1810578145}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1810578148
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1810578145}
---- !u!1 &1811415658
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1811415659}
- - component: {fileID: 1811415661}
- - component: {fileID: 1811415660}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1811415659
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1811415658}
- 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: 1975725658}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1811415660
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1811415658}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1811415661
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1811415658}
---- !u!1 &1811599466
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1811599467}
- - component: {fileID: 1811599469}
- - component: {fileID: 1811599468}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1811599467
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1811599466}
- 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: 859999235}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1811599468
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1811599466}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1811599469
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1811599466}
---- !u!1 &1813289516
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1813289517}
- m_Layer: 0
- m_Name: label_0_42
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1813289517
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1813289516}
- 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: 16457292}
- - {fileID: 540746927}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 42
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1813691826
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1813691827}
- m_Layer: 0
- m_Name: label_0_73
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1813691827
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1813691826}
- 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: 878648158}
- - {fileID: 699276535}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 73
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1817550697
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1817550698}
- - component: {fileID: 1817550700}
- - component: {fileID: 1817550699}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1817550698
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1817550697}
- 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: 1481740289}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1817550699
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1817550697}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1817550700
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1817550697}
---- !u!1 &1820314053
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1820314054}
- m_Layer: 0
- m_Name: label_0_53
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1820314054
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1820314053}
- 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: 591936440}
- - {fileID: 35928855}
- m_Father: {fileID: 894361979}
- m_RootOrder: 53
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1822901260
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1822901261}
- - component: {fileID: 1822901263}
- - component: {fileID: 1822901262}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1822901261
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1822901260}
- 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: 573375650}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1822901262
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1822901260}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1822901263
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1822901260}
---- !u!1 &1824376092
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1824376093}
- m_Layer: 0
- m_Name: label_0_40
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1824376093
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1824376092}
- 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: 350851383}
- - {fileID: 113123325}
- m_Father: {fileID: 894361979}
- m_RootOrder: 40
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1825428795
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1825428796}
- m_Layer: 0
- m_Name: label_0_2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1825428796
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1825428795}
- 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: 1569041839}
- - {fileID: 1067001951}
- m_Father: {fileID: 879012035}
- m_RootOrder: 2
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1826243911
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1826243912}
- - component: {fileID: 1826243914}
- - component: {fileID: 1826243913}
- m_Layer: 0
- m_Name: axis_x22
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1826243912
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1826243911}
- 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: 1436921200}
- 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: 1086.3059, y: 7}
- m_SizeDelta: {x: 362.102, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1826243913
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1826243911}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1826243914
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1826243911}
---- !u!1 &1827057368
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1827057369}
- m_Layer: 0
- m_Name: label_0_24
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1827057369
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1827057368}
- 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: 1920931692}
- - {fileID: 416713224}
- m_Father: {fileID: 894361979}
- m_RootOrder: 24
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
--- !u!1 &1829645606
GameObject:
m_ObjectHideFlags: 0
@@ -65128,662 +49916,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1829645606}
---- !u!1 &1830812502
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1830812503}
- - component: {fileID: 1830812505}
- - component: {fileID: 1830812504}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1830812503
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1830812502}
- 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: 1130777856}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1830812504
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1830812502}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1830812505
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1830812502}
---- !u!1 &1832696003
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1832696004}
- m_Layer: 0
- m_Name: label_0_48
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1832696004
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1832696003}
- 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: 1915814377}
- - {fileID: 1009147885}
- m_Father: {fileID: 879012035}
- m_RootOrder: 48
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1834239842
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1834239843}
- - component: {fileID: 1834239845}
- - component: {fileID: 1834239844}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1834239843
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1834239842}
- 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: 138047625}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1834239844
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1834239842}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1834239845
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1834239842}
---- !u!1 &1836262653
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1836262654}
- - component: {fileID: 1836262656}
- - component: {fileID: 1836262655}
- 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 &1836262654
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1836262653}
- 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: 1633117997}
- 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: 350}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1836262655
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1836262653}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1836262656
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1836262653}
---- !u!1 &1844208166
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1844208167}
- - component: {fileID: 1844208169}
- - component: {fileID: 1844208168}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1844208167
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1844208166}
- 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: 1570042025}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1844208168
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1844208166}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1844208169
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1844208166}
---- !u!1 &1846086161
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1846086162}
- m_Layer: 0
- m_Name: label_0_13
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1846086162
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1846086161}
- 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: 490377968}
- - {fileID: 1038647463}
- m_Father: {fileID: 879012035}
- m_RootOrder: 13
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1847663146
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1847663147}
- - component: {fileID: 1847663149}
- - component: {fileID: 1847663148}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1847663147
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1847663146}
- 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: 1216474455}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1847663148
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1847663146}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1847663149
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1847663146}
---- !u!1 &1848920624
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1848920625}
- - component: {fileID: 1848920627}
- - component: {fileID: 1848920626}
- 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 &1848920625
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1848920624}
- 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: 607005197}
- 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: 1434, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1848920626
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1848920624}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:15
---- !u!222 &1848920627
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1848920624}
---- !u!1 &1851355884
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1851355885}
- - component: {fileID: 1851355887}
- - component: {fileID: 1851355886}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1851355885
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1851355884}
- 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: 569417971}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1851355886
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1851355884}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1851355887
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1851355884}
---- !u!1 &1855933842
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1855933843}
- - component: {fileID: 1855933845}
- - component: {fileID: 1855933844}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1855933843
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1855933842}
- 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: 971033759}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1855933844
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1855933842}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1855933845
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1855933842}
--- !u!1 &1855939902
GameObject:
m_ObjectHideFlags: 0
@@ -65858,366 +49990,6 @@ CanvasRenderer:
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1855939902}
---- !u!1 &1857120896
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1857120897}
- - component: {fileID: 1857120899}
- - component: {fileID: 1857120898}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1857120897
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1857120896}
- 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: 1367553485}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1857120898
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1857120896}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1857120899
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1857120896}
---- !u!1 &1858610719
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1858610720}
- - component: {fileID: 1858610722}
- - component: {fileID: 1858610721}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1858610720
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1858610719}
- 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: 1117996705}
- 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 &1858610721
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1858610719}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1858610722
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1858610719}
---- !u!1 &1862841350
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1862841351}
- m_Layer: 0
- m_Name: label_0_100
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1862841351
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1862841350}
- 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: 10167353}
- - {fileID: 1108716216}
- m_Father: {fileID: 894361979}
- m_RootOrder: 100
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1866009722
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1866009723}
- m_Layer: 0
- m_Name: label_0_6
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1866009723
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1866009722}
- 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: 881035882}
- - {fileID: 1054950937}
- m_Father: {fileID: 879012035}
- m_RootOrder: 6
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1867899951
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1867899952}
- - component: {fileID: 1867899954}
- - component: {fileID: 1867899953}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1867899952
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1867899951}
- 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: 474297828}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1867899953
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1867899951}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1867899954
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1867899951}
---- !u!1 &1875828569
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1875828570}
- - component: {fileID: 1875828572}
- - component: {fileID: 1875828571}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1875828570
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1875828569}
- 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: 550798287}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1875828571
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1875828569}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1875828572
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1875828569}
--- !u!1 &1878234587
GameObject:
m_ObjectHideFlags: 0
@@ -66299,3930 +50071,6 @@ Transform:
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!1 &1883061018
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1883061019}
- - component: {fileID: 1883061021}
- - component: {fileID: 1883061020}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1883061019
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1883061018}
- 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: 10813551}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1883061020
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1883061018}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1883061021
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1883061018}
---- !u!1 &1884808158
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1884808159}
- - component: {fileID: 1884808161}
- - component: {fileID: 1884808160}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1884808159
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1884808158}
- 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: 1893974734}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1884808160
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1884808158}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1884808161
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1884808158}
---- !u!1 &1892050306
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1892050307}
- - component: {fileID: 1892050309}
- - component: {fileID: 1892050308}
- m_Layer: 0
- m_Name: datazoomstart
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1892050307
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1892050306}
- 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: 617775941}
- 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: 400}
- m_SizeDelta: {x: 200, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &1892050308
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1892050306}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1892050309
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1892050306}
---- !u!1 &1893974733
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1893974734}
- m_Layer: 0
- m_Name: label_0_57
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1893974734
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1893974733}
- 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: 2126977794}
- - {fileID: 1884808159}
- m_Father: {fileID: 879012035}
- m_RootOrder: 57
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1894582010
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1894582011}
- m_Layer: 0
- m_Name: label_0_41
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1894582011
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1894582010}
- 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: 675044593}
- - {fileID: 1373314098}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 41
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1895116465
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1895116466}
- - component: {fileID: 1895116468}
- - component: {fileID: 1895116467}
- 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 &1895116466
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1895116465}
- 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: 298716916}
- 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: 0}
- m_SizeDelta: {x: 50, y: 12}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1895116467
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1895116465}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1895116468
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1895116465}
---- !u!1 &1895865685
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1895865686}
- - component: {fileID: 1895865688}
- - component: {fileID: 1895865687}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1895865686
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1895865685}
- 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: 979805674}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1895865687
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1895865685}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1895865688
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1895865685}
---- !u!1 &1896059787
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1896059788}
- - component: {fileID: 1896059790}
- - component: {fileID: 1896059789}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1896059788
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1896059787}
- 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: 1141381736}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1896059789
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1896059787}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1896059790
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1896059787}
---- !u!1 &1896810088
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1896810089}
- - component: {fileID: 1896810091}
- - component: {fileID: 1896810090}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1896810089
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1896810088}
- 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: 1142602764}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1896810090
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1896810088}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1896810091
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1896810088}
---- !u!1 &1897867277
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1897867278}
- m_Layer: 0
- m_Name: label_0_49
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1897867278
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1897867277}
- 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: 2110719104}
- - {fileID: 1562459530}
- m_Father: {fileID: 894361979}
- m_RootOrder: 49
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1899141237
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1899141238}
- - component: {fileID: 1899141240}
- - component: {fileID: 1899141239}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1899141238
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1899141237}
- 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: 1091729138}
- 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 &1899141239
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1899141237}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1899141240
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1899141237}
---- !u!1 &1899709172
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1899709173}
- - component: {fileID: 1899709175}
- - component: {fileID: 1899709174}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1899709173
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1899709172}
- 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: 942777252}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1899709174
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1899709172}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1899709175
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1899709172}
---- !u!1 &1901566077
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1901566078}
- - component: {fileID: 1901566080}
- - component: {fileID: 1901566079}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1901566078
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1901566077}
- 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: 175999139}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1901566079
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1901566077}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1901566080
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1901566077}
---- !u!1 &1903797144
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1903797145}
- - component: {fileID: 1903797147}
- - component: {fileID: 1903797146}
- 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 &1903797145
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1903797144}
- 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: 828432355}
- 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: 0}
- m_SizeDelta: {x: 50, y: 12}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1903797146
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1903797144}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1903797147
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1903797144}
---- !u!1 &1904395402
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1904395403}
- m_Layer: 0
- m_Name: label_0_55
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1904395403
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1904395402}
- 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: 2126655513}
- - {fileID: 549807174}
- m_Father: {fileID: 894361979}
- m_RootOrder: 55
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1904551509
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1904551510}
- - component: {fileID: 1904551512}
- - component: {fileID: 1904551511}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1904551510
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1904551509}
- 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: 1467881649}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1904551511
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1904551509}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1904551512
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1904551509}
---- !u!1 &1904914741
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1904914742}
- - component: {fileID: 1904914744}
- - component: {fileID: 1904914743}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1904914742
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1904914741}
- 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: 336582619}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1904914743
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1904914741}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1904914744
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1904914741}
---- !u!1 &1908810025
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1908810026}
- - component: {fileID: 1908810028}
- - component: {fileID: 1908810027}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1908810026
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1908810025}
- 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: 1225838654}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1908810027
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1908810025}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1908810028
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1908810025}
---- !u!1 &1909085101
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1909085102}
- - component: {fileID: 1909085104}
- - component: {fileID: 1909085103}
- m_Layer: 0
- m_Name: axis_y23
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1909085102
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1909085101}
- 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: 366324264}
- 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: 1788, y: 270}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1909085103
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1909085101}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1909085104
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1909085101}
---- !u!1 &1911958472
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1911958473}
- - component: {fileID: 1911958475}
- - component: {fileID: 1911958474}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1911958473
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1911958472}
- 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: 395864209}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1911958474
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1911958472}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1911958475
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1911958472}
---- !u!1 &1913019390
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1913019391}
- - component: {fileID: 1913019393}
- - component: {fileID: 1913019392}
- m_Layer: 0
- m_Name: datazoomend
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1913019391
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1913019390}
- 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: 617775941}
- 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: 400}
- m_SizeDelta: {x: 200, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1913019392
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1913019390}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1913019393
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1913019390}
---- !u!1 &1915814376
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1915814377}
- - component: {fileID: 1915814379}
- - component: {fileID: 1915814378}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1915814377
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1915814376}
- 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: 1832696004}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1915814378
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1915814376}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1915814379
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1915814376}
---- !u!1 &1917152561
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1917152562}
- - component: {fileID: 1917152564}
- - component: {fileID: 1917152563}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1917152562
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1917152561}
- 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: 1966190624}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1917152563
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1917152561}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1917152564
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1917152561}
---- !u!1 &1920023785
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1920023786}
- - component: {fileID: 1920023788}
- - component: {fileID: 1920023787}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1920023786
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1920023785}
- 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: 411993381}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1920023787
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1920023785}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1920023788
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1920023785}
---- !u!1 &1920931691
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1920931692}
- - component: {fileID: 1920931694}
- - component: {fileID: 1920931693}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1920931692
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1920931691}
- 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: 1827057369}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1920931693
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1920931691}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1920931694
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1920931691}
---- !u!1 &1922343102
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1922343103}
- m_Layer: 0
- m_Name: label_0_65
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1922343103
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1922343102}
- 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: 2052893826}
- - {fileID: 258138212}
- m_Father: {fileID: 894361979}
- m_RootOrder: 65
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1922601330
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1922601331}
- m_Layer: 0
- m_Name: label_0_84
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1922601331
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1922601330}
- 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: 1311823600}
- - {fileID: 2060097726}
- m_Father: {fileID: 894361979}
- m_RootOrder: 84
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1923964891
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1923964892}
- m_Layer: 0
- m_Name: label_0_10
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1923964892
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1923964891}
- 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: 889367320}
- - {fileID: 1674777670}
- m_Father: {fileID: 894361979}
- m_RootOrder: 10
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1925797433
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1925797434}
- - component: {fileID: 1925797436}
- - component: {fileID: 1925797435}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1925797434
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1925797433}
- 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: 2129149243}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1925797435
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1925797433}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1925797436
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1925797433}
---- !u!1 &1926027241
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1926027242}
- m_Layer: 0
- m_Name: label_0_31
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1926027242
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1926027241}
- 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: 733547339}
- - {fileID: 1236447857}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 31
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1927455086
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1927455087}
- - component: {fileID: 1927455089}
- - component: {fileID: 1927455088}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1927455087
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1927455086}
- 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: 550798287}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1927455088
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1927455086}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1927455089
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1927455086}
---- !u!1 &1927656419
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1927656420}
- - component: {fileID: 1927656422}
- - component: {fileID: 1927656421}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1927656420
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1927656419}
- 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: 1976959977}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1927656421
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1927656419}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1927656422
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1927656419}
---- !u!1 &1928400951
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1928400952}
- - component: {fileID: 1928400954}
- - component: {fileID: 1928400953}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1928400952
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1928400951}
- 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: 720089071}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1928400953
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1928400951}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1928400954
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1928400951}
---- !u!1 &1930690833
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1930690834}
- - component: {fileID: 1930690836}
- - component: {fileID: 1930690835}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1930690834
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1930690833}
- 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: 1934639676}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1930690835
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1930690833}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1930690836
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1930690833}
---- !u!1 &1930866784
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1930866785}
- - component: {fileID: 1930866787}
- - component: {fileID: 1930866786}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1930866785
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1930866784}
- 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: 1531874593}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1930866786
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1930866784}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1930866787
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1930866784}
---- !u!1 &1931138810
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1931138811}
- - component: {fileID: 1931138813}
- - component: {fileID: 1931138812}
- m_Layer: 0
- m_Name: axis_y2_label
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1931138811
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1931138810}
- 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: 1720947332}
- m_Father: {fileID: 2052739601}
- 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: 140}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1931138812
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1931138810}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1931138813
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1931138810}
---- !u!1 &1931900829
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1931900830}
- - component: {fileID: 1931900832}
- - component: {fileID: 1931900831}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1931900830
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1931900829}
- 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: 2056459224}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1931900831
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1931900829}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1931900832
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1931900829}
---- !u!1 &1934639675
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1934639676}
- m_Layer: 0
- m_Name: label_0_45
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1934639676
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1934639675}
- 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: 1930690834}
- - {fileID: 1958727154}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 45
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1941400850
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1941400851}
- - component: {fileID: 1941400853}
- - component: {fileID: 1941400852}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1941400851
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1941400850}
- 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: 1397180239}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1941400852
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1941400850}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1941400853
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1941400850}
---- !u!1 &1942733325
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1942733326}
- - component: {fileID: 1942733328}
- - component: {fileID: 1942733327}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1942733326
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1942733325}
- 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: 1142602764}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1942733327
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1942733325}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1942733328
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1942733325}
---- !u!1 &1945731926
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1945731927}
- - component: {fileID: 1945731929}
- - component: {fileID: 1945731928}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1945731927
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1945731926}
- 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: 1721764753}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1945731928
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1945731926}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1945731929
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1945731926}
---- !u!1 &1947109900
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1947109901}
- - component: {fileID: 1947109903}
- - component: {fileID: 1947109902}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1947109901
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1947109900}
- 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: 1799964334}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1947109902
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1947109900}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1947109903
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1947109900}
---- !u!1 &1950440256
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1950440257}
- - component: {fileID: 1950440259}
- - component: {fileID: 1950440258}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1950440257
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1950440256}
- 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: 128552215}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1950440258
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1950440256}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1950440259
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1950440256}
---- !u!1 &1950796008
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1950796009}
- m_Layer: 0
- m_Name: label_0_74
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1950796009
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1950796008}
- 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: 937010598}
- - {fileID: 600015464}
- m_Father: {fileID: 894361979}
- m_RootOrder: 74
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1958462748
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1958462749}
- m_Layer: 0
- m_Name: serie
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1958462749
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1958462748}
- 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: 1320244765}
- m_Father: {fileID: 1304222265}
- 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: 1810.51, y: 140}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &1958727153
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1958727154}
- - component: {fileID: 1958727156}
- - component: {fileID: 1958727155}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1958727154
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1958727153}
- 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: 1934639676}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1958727155
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1958727153}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1958727156
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1958727153}
---- !u!1 &1959311325
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1959311326}
- - component: {fileID: 1959311328}
- - component: {fileID: 1959311327}
- m_Layer: 0
- m_Name: axis_y24
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &1959311326
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1959311325}
- 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: 366324264}
- 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: 1788, y: 350}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0, y: 0.5}
---- !u!114 &1959311327
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1959311325}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &1959311328
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1959311325}
---- !u!1 &1961462948
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1961462949}
- - component: {fileID: 1961462951}
- - component: {fileID: 1961462950}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1961462949
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1961462948}
- 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: 1225838654}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1961462950
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1961462948}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1961462951
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1961462948}
---- !u!1 &1964067833
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1964067834}
- - component: {fileID: 1964067836}
- - component: {fileID: 1964067835}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1964067834
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1964067833}
- 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: 2113880151}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1964067835
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1964067833}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1964067836
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1964067833}
---- !u!1 &1966190623
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1966190624}
- m_Layer: 0
- m_Name: label_0_32
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1966190624
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1966190623}
- 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: 1917152562}
- - {fileID: 1567089094}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 32
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1971827772
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1971827773}
- - component: {fileID: 1971827775}
- - component: {fileID: 1971827774}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1971827773
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1971827772}
- 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: 1665516830}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1971827774
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1971827772}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1971827775
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1971827772}
---- !u!1 &1972466725
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1972466726}
- - component: {fileID: 1972466728}
- - component: {fileID: 1972466727}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1972466726
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1972466725}
- 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: 1078980475}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1972466727
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1972466725}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1972466728
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1972466725}
---- !u!1 &1975725657
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1975725658}
- m_Layer: 0
- m_Name: label_0_91
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1975725658
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1975725657}
- 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: 899235305}
- - {fileID: 1811415659}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 91
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1976959976
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1976959977}
- m_Layer: 0
- m_Name: label_0_11
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1976959977
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1976959976}
- 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: 1927656420}
- - {fileID: 1323562385}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 11
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1978396416
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1978396417}
- - component: {fileID: 1978396419}
- - component: {fileID: 1978396418}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1978396417
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1978396416}
- 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: 254774805}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1978396418
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1978396416}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1978396419
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1978396416}
---- !u!1 &1979318934
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1979318935}
- - component: {fileID: 1979318937}
- - component: {fileID: 1979318936}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1979318935
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1979318934}
- 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: 2086747000}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1979318936
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1979318934}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1979318937
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1979318934}
---- !u!1 &1981146382
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1981146383}
- m_Layer: 0
- m_Name: label_0_5
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1981146383
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1981146382}
- 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: 1098589685}
- - {fileID: 2094886725}
- m_Father: {fileID: 894361979}
- m_RootOrder: 5
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1982186094
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1982186095}
- - component: {fileID: 1982186097}
- - component: {fileID: 1982186096}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1982186095
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1982186094}
- 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: 1078980475}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1982186096
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1982186094}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1982186097
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1982186094}
---- !u!1 &1982537060
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1982537061}
- m_Layer: 0
- m_Name: label_0_17
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1982537061
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1982537060}
- 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: 1046546352}
- - {fileID: 1179172855}
- m_Father: {fileID: 879012035}
- m_RootOrder: 17
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &1984975848
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1984975849}
- - component: {fileID: 1984975851}
- - component: {fileID: 1984975850}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1984975849
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1984975848}
- 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: 317897654}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1984975850
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1984975848}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &1984975851
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1984975848}
---- !u!1 &1985108910
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1985108911}
- - component: {fileID: 1985108913}
- - component: {fileID: 1985108912}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1985108911
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1985108910}
- 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: 386895853}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1985108912
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1985108910}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1985108913
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1985108910}
---- !u!1 &1992711316
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1992711317}
- - component: {fileID: 1992711319}
- - component: {fileID: 1992711318}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1992711317
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1992711316}
- 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: 1379246024}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1992711318
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1992711316}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1992711319
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1992711316}
---- !u!1 &1997184301
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 1997184302}
- - component: {fileID: 1997184304}
- - component: {fileID: 1997184303}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &1997184302
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1997184301}
- 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: 1095146674}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &1997184303
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1997184301}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &1997184304
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 1997184301}
--- !u!1 &2002671359
GameObject:
m_ObjectHideFlags: 0
@@ -70272,4396 +50120,5 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: d9d68a9ea64234d42af215ee70dd20af, type: 3}
m_Name:
m_EditorClassIdentifier:
- fps: 3.967079
+ fps: 5.005091
m_MaxCacheDataNumber: 2000
---- !u!1 &2003011224
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2003011225}
- - component: {fileID: 2003011227}
- - component: {fileID: 2003011226}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2003011225
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2003011224}
- 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: 1681206412}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2003011226
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2003011224}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2003011227
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2003011224}
---- !u!1 &2003469502
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2003469503}
- m_Layer: 0
- m_Name: label_0_39
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2003469503
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2003469502}
- 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: 1516299829}
- - {fileID: 1669373131}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 39
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2004279933
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2004279934}
- - component: {fileID: 2004279936}
- - component: {fileID: 2004279935}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2004279934
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2004279933}
- 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: 2086747000}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2004279935
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2004279933}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2004279936
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2004279933}
---- !u!1 &2005593859
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2005593860}
- - component: {fileID: 2005593862}
- - component: {fileID: 2005593861}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2005593860
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2005593859}
- 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: 2051287526}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2005593861
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2005593859}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2005593862
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2005593859}
---- !u!1 &2005945472
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2005945473}
- m_Layer: 0
- m_Name: label_0_47
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2005945473
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2005945472}
- 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: 423166858}
- - {fileID: 1689934657}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 47
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2008635766
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2008635767}
- m_Layer: 0
- m_Name: label_0_43
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2008635767
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2008635766}
- 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: 268206080}
- - {fileID: 688995901}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 43
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2010847954
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2010847955}
- - component: {fileID: 2010847957}
- - component: {fileID: 2010847956}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2010847955
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2010847954}
- 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: 455406443}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2010847956
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2010847954}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2010847957
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2010847954}
---- !u!1 &2011380545
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2011380546}
- - component: {fileID: 2011380548}
- - component: {fileID: 2011380547}
- 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 &2011380546
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2011380545}
- 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: 607005197}
- 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: 1780, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &2011380547
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2011380545}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:19
---- !u!222 &2011380548
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2011380545}
---- !u!1 &2013350462
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2013350463}
- m_Layer: 0
- m_Name: label_0_37
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2013350463
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2013350462}
- 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: 1585454233}
- - {fileID: 1101878035}
- m_Father: {fileID: 879012035}
- m_RootOrder: 37
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2013357881
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2013357882}
- - component: {fileID: 2013357884}
- - component: {fileID: 2013357883}
- m_Layer: 0
- m_Name: axis_x20
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &2013357882
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2013357881}
- 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: 1400674265}
- 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: 396, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &2013357883
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2013357881}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &2013357884
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2013357881}
---- !u!1 &2016230777
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2016230778}
- m_Layer: 0
- m_Name: label_0_99
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2016230778
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2016230777}
- 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: 790916336}
- - {fileID: 1156259265}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 99
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2017736212
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2017736213}
- m_Layer: 0
- m_Name: label_0_11
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2017736213
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2017736212}
- 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: 1578851009}
- - {fileID: 601281332}
- m_Father: {fileID: 879012035}
- m_RootOrder: 11
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2018863907
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2018863908}
- - component: {fileID: 2018863910}
- - component: {fileID: 2018863909}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2018863908
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2018863907}
- 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: 312564751}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2018863909
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2018863907}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2018863910
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2018863907}
---- !u!1 &2019239774
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2019239775}
- m_Layer: 0
- m_Name: label_0_53
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2019239775
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2019239774}
- 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: 264383856}
- - {fileID: 908491426}
- m_Father: {fileID: 879012035}
- m_RootOrder: 53
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2035354808
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2035354809}
- - component: {fileID: 2035354811}
- - component: {fileID: 2035354810}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2035354809
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2035354808}
- 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: 1493559516}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2035354810
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2035354808}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2035354811
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2035354808}
---- !u!1 &2037297519
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2037297520}
- m_Layer: 0
- m_Name: label_0_68
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2037297520
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2037297519}
- 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: 568502850}
- - {fileID: 1042464582}
- m_Father: {fileID: 879012035}
- m_RootOrder: 68
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2039542370
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2039542371}
- - component: {fileID: 2039542373}
- - component: {fileID: 2039542372}
- 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 &2039542371
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2039542370}
- 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: 247028392}
- 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: -8, y: 10}
- m_SizeDelta: {x: 0, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &2039542372
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2039542370}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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:
---- !u!222 &2039542373
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2039542370}
---- !u!1 &2044490129
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2044490130}
- m_Layer: 0
- m_Name: label_0_94
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2044490130
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2044490129}
- 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: 604124231}
- - {fileID: 304221329}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 94
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2048466817
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2048466818}
- - component: {fileID: 2048466820}
- - component: {fileID: 2048466819}
- m_Layer: 0
- m_Name: axis_x20
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &2048466818
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2048466817}
- 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: 1436921200}
- 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: 362.102, y: 7}
- m_SizeDelta: {x: 362.102, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &2048466819
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2048466817}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &2048466820
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2048466817}
---- !u!1 &2051287525
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2051287526}
- m_Layer: 0
- m_Name: label_0_14
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2051287526
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2051287525}
- 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: 295459731}
- - {fileID: 2005593860}
- m_Father: {fileID: 879012035}
- m_RootOrder: 14
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2052739600
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2052739601}
- m_Layer: 0
- m_Name: tooltip
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &2052739601
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2052739600}
- 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: 497491741}
- - {fileID: 2105109421}
- - {fileID: 1275666645}
- - {fileID: 326900095}
- - {fileID: 1931138811}
- m_Father: {fileID: 1304222265}
- 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: 1810.51, y: 140}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &2052893825
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2052893826}
- - component: {fileID: 2052893828}
- - component: {fileID: 2052893827}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2052893826
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2052893825}
- 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: 1922343103}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2052893827
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2052893825}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2052893828
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2052893825}
---- !u!1 &2056459223
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2056459224}
- m_Layer: 0
- m_Name: label_0_92
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2056459224
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2056459223}
- 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: 1931900830}
- - {fileID: 1590697441}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 92
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2057179141
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2057179142}
- - component: {fileID: 2057179144}
- - component: {fileID: 2057179143}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2057179142
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2057179141}
- 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: 1665516830}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2057179143
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2057179141}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2057179144
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2057179141}
---- !u!1 &2059699166
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2059699167}
- m_Layer: 0
- m_Name: label_0_38
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2059699167
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2059699166}
- 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: 1199600325}
- - {fileID: 836057684}
- m_Father: {fileID: 894361979}
- m_RootOrder: 38
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2060097725
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2060097726}
- - component: {fileID: 2060097728}
- - component: {fileID: 2060097727}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2060097726
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2060097725}
- 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: 1922601331}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2060097727
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2060097725}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2060097728
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2060097725}
---- !u!1 &2061986586
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2061986587}
- m_Layer: 0
- m_Name: label_0_12
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2061986587
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2061986586}
- 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: 626502564}
- - {fileID: 1398842820}
- m_Father: {fileID: 894361979}
- m_RootOrder: 12
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2064661654
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2064661655}
- - component: {fileID: 2064661657}
- - component: {fileID: 2064661656}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2064661655
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2064661654}
- 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: 911241396}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2064661656
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2064661654}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2064661657
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2064661654}
---- !u!1 &2064709920
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2064709921}
- - component: {fileID: 2064709923}
- - component: {fileID: 2064709922}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2064709921
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2064709920}
- 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: 569417971}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2064709922
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2064709920}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2064709923
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2064709920}
---- !u!1 &2065002811
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2065002812}
- - component: {fileID: 2065002814}
- - component: {fileID: 2065002813}
- 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 &2065002812
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2065002811}
- 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: 1633117997}
- 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: 110}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &2065002813
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2065002811}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 5
---- !u!222 &2065002814
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2065002811}
---- !u!1 &2065853255
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2065853256}
- m_Layer: 0
- m_Name: axis_y2
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &2065853256
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2065853255}
- 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: 1609256325}
- - {fileID: 1480449054}
- - {fileID: 43375197}
- - {fileID: 587350533}
- - {fileID: 1548444502}
- m_Father: {fileID: 680358239}
- 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: 1810, y: 400}
- m_Pivot: {x: 0, y: 1}
---- !u!1 &2066190866
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2066190867}
- m_Layer: 0
- m_Name: label_0_59
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2066190867
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2066190866}
- 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: 384980631}
- - {fileID: 1121387701}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 59
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2066298918
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2066298919}
- - component: {fileID: 2066298921}
- - component: {fileID: 2066298920}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2066298919
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2066298918}
- 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: 682966886}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2066298920
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2066298918}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2066298921
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2066298918}
---- !u!1 &2067959694
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2067959695}
- m_Layer: 0
- m_Name: label_0_40
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2067959695
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2067959694}
- 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: 835952281}
- - {fileID: 945829682}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 40
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2075553648
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2075553649}
- - component: {fileID: 2075553651}
- - component: {fileID: 2075553650}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2075553649
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2075553648}
- 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: 1309058429}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2075553650
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2075553648}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2075553651
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2075553648}
---- !u!1 &2075920036
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2075920037}
- - component: {fileID: 2075920039}
- - component: {fileID: 2075920038}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2075920037
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2075920036}
- 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: 254774805}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2075920038
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2075920036}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2075920039
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2075920036}
---- !u!1 &2077171402
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2077171403}
- m_Layer: 0
- m_Name: label_0_18
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2077171403
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2077171402}
- 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: 981360537}
- - {fileID: 723151218}
- m_Father: {fileID: 879012035}
- m_RootOrder: 18
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2077441184
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2077441185}
- - component: {fileID: 2077441187}
- - component: {fileID: 2077441186}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2077441185
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2077441184}
- 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: 133567236}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2077441186
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2077441184}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2077441187
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2077441184}
---- !u!1 &2077525520
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2077525521}
- - component: {fileID: 2077525523}
- - component: {fileID: 2077525522}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2077525521
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2077525520}
- 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: 1378139615}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2077525522
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2077525520}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2077525523
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2077525520}
---- !u!1 &2081478708
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2081478709}
- m_Layer: 0
- m_Name: label_0_76
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2081478709
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2081478708}
- 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: 1729560236}
- - {fileID: 1431049261}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 76
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2082024832
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2082024833}
- - component: {fileID: 2082024835}
- - component: {fileID: 2082024834}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2082024833
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2082024832}
- 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: 1664425325}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2082024834
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2082024832}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2082024835
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2082024832}
---- !u!1 &2086746999
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2086747000}
- m_Layer: 0
- m_Name: label_0_66
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2086747000
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2086746999}
- 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: 2004279934}
- - {fileID: 1979318935}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 66
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2087026993
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2087026994}
- - component: {fileID: 2087026996}
- - component: {fileID: 2087026995}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2087026994
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2087026993}
- 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: 640729150}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2087026995
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2087026993}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2087026996
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2087026993}
---- !u!1 &2093877497
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2093877498}
- m_Layer: 0
- m_Name: title
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2093877498
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2093877497}
- 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: 259464921}
- - {fileID: 1664562837}
- m_Father: {fileID: 680358239}
- 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: -5}
- m_SizeDelta: {x: 1810, y: 400}
- m_Pivot: {x: 0.5, y: 1}
---- !u!1 &2094886724
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2094886725}
- - component: {fileID: 2094886727}
- - component: {fileID: 2094886726}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2094886725
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2094886724}
- 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: 1981146383}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2094886726
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2094886724}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2094886727
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2094886724}
---- !u!1 &2096782639
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2096782640}
- - component: {fileID: 2096782642}
- - component: {fileID: 2096782641}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2096782640
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2096782639}
- 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: 1265568032}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2096782641
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2096782639}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2096782642
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2096782639}
---- !u!1 &2097612029
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2097612030}
- - component: {fileID: 2097612032}
- - component: {fileID: 2097612031}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2097612030
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2097612029}
- 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: 100253982}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2097612031
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2097612029}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2097612032
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2097612029}
---- !u!1 &2099640356
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2099640357}
- - component: {fileID: 2099640359}
- - component: {fileID: 2099640358}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2099640357
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2099640356}
- 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: 254000717}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2099640358
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2099640356}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2099640359
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2099640356}
---- !u!1 &2102818027
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2102818028}
- - component: {fileID: 2102818030}
- - component: {fileID: 2102818029}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2102818028
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2102818027}
- 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: 64469354}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2102818029
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2102818027}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2102818030
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2102818027}
---- !u!1 &2103414468
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2103414469}
- - component: {fileID: 2103414471}
- - component: {fileID: 2103414470}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2103414469
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2103414468}
- 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: 406082603}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2103414470
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2103414468}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2103414471
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2103414468}
---- !u!1 &2103523384
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2103523385}
- - component: {fileID: 2103523387}
- - component: {fileID: 2103523386}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2103523385
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2103523384}
- 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: 705325804}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2103523386
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2103523384}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2103523387
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2103523384}
---- !u!1 &2105109420
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2105109421}
- - component: {fileID: 2105109423}
- - component: {fileID: 2105109422}
- 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 &2105109421
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2105109420}
- 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: 247280877}
- m_Father: {fileID: 2052739601}
- 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: 140}
- m_SizeDelta: {x: 100, y: 50}
- m_Pivot: {x: 0.5, y: 1}
---- !u!114 &2105109422
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2105109420}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2105109423
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2105109420}
---- !u!1 &2107440741
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2107440742}
- - component: {fileID: 2107440744}
- - component: {fileID: 2107440743}
- 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 &2107440742
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2107440741}
- 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: 554873560}
- 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: 350}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &2107440743
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2107440741}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &2107440744
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2107440741}
---- !u!1 &2107997036
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2107997037}
- - component: {fileID: 2107997039}
- - component: {fileID: 2107997038}
- 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 &2107997037
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2107997036}
- 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: 607005197}
- 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: 1088, y: -387}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &2107997038
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2107997036}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 12:00:11
---- !u!222 &2107997039
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2107997036}
---- !u!1 &2109732580
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2109732581}
- - component: {fileID: 2109732583}
- - component: {fileID: 2109732582}
- m_Layer: 0
- m_Name: axis_x8
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2109732581
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2109732580}
- 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: 1744434248}
- 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: 1709.9261, y: -147}
- m_SizeDelta: {x: 201.16779, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &2109732582
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2109732580}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 15
---- !u!222 &2109732583
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2109732580}
---- !u!1 &2110719103
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2110719104}
- - component: {fileID: 2110719106}
- - component: {fileID: 2110719105}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2110719104
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2110719103}
- 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: 1897867278}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2110719105
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2110719103}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2110719106
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2110719103}
---- !u!1 &2111702908
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2111702909}
- - component: {fileID: 2111702911}
- - component: {fileID: 2111702910}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2111702909
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2111702908}
- 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: 953675585}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2111702910
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2111702908}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2111702911
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2111702908}
---- !u!1 &2113120185
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2113120186}
- - component: {fileID: 2113120188}
- - component: {fileID: 2113120187}
- m_Layer: 0
- m_Name: axis_x22
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 0
---- !u!224 &2113120186
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2113120185}
- 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: 399349871}
- 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: 1088, y: -33}
- m_SizeDelta: {x: 346, y: 20}
- m_Pivot: {x: 1, y: 0.5}
---- !u!114 &2113120187
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2113120185}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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 &2113120188
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2113120185}
---- !u!1 &2113230971
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2113230972}
- - component: {fileID: 2113230974}
- - component: {fileID: 2113230973}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2113230972
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2113230971}
- 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: 46999329}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2113230973
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2113230971}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2113230974
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2113230971}
---- !u!1 &2113880150
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2113880151}
- m_Layer: 0
- m_Name: label_0_56
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2113880151
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2113880150}
- 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: 1964067834}
- - {fileID: 1441135001}
- m_Father: {fileID: 1101421955}
- m_RootOrder: 56
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2117503484
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2117503485}
- - component: {fileID: 2117503487}
- - component: {fileID: 2117503486}
- m_Layer: 0
- m_Name: content
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2117503485
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2117503484}
- 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: 599452057}
- m_Father: {fileID: 1347932761}
- 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 &2117503486
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2117503484}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2117503487
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2117503484}
---- !u!1 &2120439423
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2120439424}
- - component: {fileID: 2120439426}
- - component: {fileID: 2120439425}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2120439424
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2120439423}
- 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: 1397180239}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2120439425
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2120439423}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2120439426
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2120439423}
---- !u!1 &2123338077
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2123338078}
- - component: {fileID: 2123338080}
- - component: {fileID: 2123338079}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2123338078
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2123338077}
- 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: 1025956051}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2123338079
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2123338077}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2123338080
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2123338077}
---- !u!1 &2124189019
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2124189020}
- m_Layer: 0
- m_Name: label_0_98
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2124189020
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2124189019}
- 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: 1216652220}
- - {fileID: 1808054300}
- m_Father: {fileID: 894361979}
- m_RootOrder: 98
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2125402868
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2125402869}
- - component: {fileID: 2125402871}
- - component: {fileID: 2125402870}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2125402869
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2125402868}
- 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: 1104111042}
- 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 &2125402870
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2125402868}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: 0
- m_AlignByGeometry: 0
- m_RichText: 1
- m_HorizontalOverflow: 1
- m_VerticalOverflow: 1
- m_LineSpacing: 1
- m_Text: Text
---- !u!222 &2125402871
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2125402868}
---- !u!1 &2126655512
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2126655513}
- - component: {fileID: 2126655515}
- - component: {fileID: 2126655514}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2126655513
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2126655512}
- 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: 1904395403}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2126655514
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2126655512}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2126655515
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2126655512}
---- !u!1 &2126977793
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2126977794}
- - component: {fileID: 2126977796}
- - component: {fileID: 2126977795}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2126977794
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2126977793}
- 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: 1893974734}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2126977795
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2126977793}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2126977796
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2126977793}
---- !u!1 &2127129182
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2127129183}
- - component: {fileID: 2127129185}
- - component: {fileID: 2127129184}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2127129183
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2127129182}
- 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: 1218043124}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2127129184
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2127129182}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2127129185
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2127129182}
---- !u!1 &2129149242
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2129149243}
- m_Layer: 0
- m_Name: label_0_4
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2129149243
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2129149242}
- 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: 1110516616}
- - {fileID: 1925797434}
- m_Father: {fileID: 894361979}
- m_RootOrder: 4
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2130517365
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2130517366}
- m_Layer: 0
- m_Name: label_0_49
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2130517366
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2130517365}
- 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: 1555588425}
- - {fileID: 106500113}
- m_Father: {fileID: 879012035}
- m_RootOrder: 49
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2134569523
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2134569524}
- - component: {fileID: 2134569526}
- - component: {fileID: 2134569525}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2134569524
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2134569523}
- 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: 582417063}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2134569525
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2134569523}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2134569526
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2134569523}
---- !u!1 &2135315466
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2135315467}
- - component: {fileID: 2135315469}
- - component: {fileID: 2135315468}
- m_Layer: 0
- m_Name: Text
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2135315467
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2135315466}
- 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: 1586011819}
- m_RootOrder: 1
- 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: 0}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2135315468
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2135315466}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, 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: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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: Text
---- !u!222 &2135315469
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2135315466}
---- !u!1 &2138665632
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2138665633}
- m_Layer: 0
- m_Name: label_0_84
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2138665633
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2138665632}
- 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: 1635426885}
- - {fileID: 1343298581}
- m_Father: {fileID: 879012035}
- m_RootOrder: 84
- 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: -562.96, y: 68.125}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!1 &2139634796
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2139634797}
- - component: {fileID: 2139634799}
- - component: {fileID: 2139634798}
- m_Layer: 0
- m_Name: Icon
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2139634797
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2139634796}
- 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: 433194775}
- 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: 0}
- m_SizeDelta: {x: 40, y: 40}
- m_Pivot: {x: 0.5, y: 0.5}
---- !u!114 &2139634798
-MonoBehaviour:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2139634796}
- m_Enabled: 1
- m_EditorHideFlags: 0
- m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
- m_Name:
- m_EditorClassIdentifier:
- m_Material: {fileID: 0}
- m_Color: {r: 1, g: 1, b: 1, a: 1}
- m_RaycastTarget: 1
- m_OnCullStateChanged:
- m_PersistentCalls:
- m_Calls: []
- m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
- Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
- 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
---- !u!222 &2139634799
-CanvasRenderer:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2139634796}
---- !u!1 &2145200426
-GameObject:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- serializedVersion: 5
- m_Component:
- - component: {fileID: 2145200427}
- m_Layer: 0
- m_Name: label_0_75
- m_TagString: Untagged
- m_Icon: {fileID: 0}
- m_NavMeshLayer: 0
- m_StaticEditorFlags: 0
- m_IsActive: 1
---- !u!224 &2145200427
-RectTransform:
- m_ObjectHideFlags: 0
- m_PrefabParentObject: {fileID: 0}
- m_PrefabInternal: {fileID: 0}
- m_GameObject: {fileID: 2145200426}
- 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: 1117798274}
- - {fileID: 547783944}
- m_Father: {fileID: 894361979}
- m_RootOrder: 75
- 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: -905, y: 200}
- m_SizeDelta: {x: 50, y: 20}
- m_Pivot: {x: 0.5, y: 0.5}